Hello,
my data will look like this.
Rows (around 100) that contains two cells and each cell will have multiple values separated by comma and space. I need to compare those two cell and find out which ones are unique. In this case the result would be like this (same format)
I was able to do it through formulas
I could rewrite this in VBA, but maybe it could be done differently because it will be used in larger macro that I'm trying to build.
Thank you!
my data will look like this.
R7404, R7405, R7406, R7600, R7606, R7607, R7608, R7611, R7645, R7803, R7810, R7817, R7822, R7825, R7827, R7832, R7833, R7834, R7835, R7837 | R2102, R2128, R7404, R7405, R7406, R7600, R7606, R7607, R7608, R7611, R7645, R7803, R7810, R7817, R7822, R7825, R7827, R7832, R7833, R7834, R7835, R7837 |
Rows (around 100) that contains two cells and each cell will have multiple values separated by comma and space. I need to compare those two cell and find out which ones are unique. In this case the result would be like this (same format)
|
I was able to do it through formulas
Excel Formula:
=TEXTJOIN(", ";TRUE;UNIQUE(TRANSPOSE(TEXTSPLIT(TEXTJOIN(", ";TRUE;A1;B1);;", "));TRUE;TRUE))
I could rewrite this in VBA, but maybe it could be done differently because it will be used in larger macro that I'm trying to build.
Thank you!