I would like to compare characters in the cells and return the remain. For example,
A1 = (111, 222, 444, 555)
B1 = (111, 222, 333, 444, 555, 666)
Then, I would like to see the remains in the cell C1,
C1 = (333, 666)
Is there any way I can do with excel functions? Do I have to do this with VBA code? Thanks in advance!
Building on @Tim's comment, one possible UDF could look like this.
Just add the above code in a module and then you can use it like this in let's say cell C1
=GetDiff(A1,B1)