Hi,
This is my first posting. I have two columns of data which I need to compare in order to find those values which do not appear in either column. Once found I intend using conditional formating to highlight those values which are not duplicated in either column.
For example
Column A Column B
42.680 741.980
640.830 138.040
741.980 757.280
745.380 640.830
-70.200 -70.200
14.850 138.040
138.040 42.680
690.980
1,440.070
I have tried the following formula which compares a value in column A against the whole of column B to see if its unique or not, but I need a formula that can locate a unique value whether it be in column A or B.
Thanks
This is my first posting. I have two columns of data which I need to compare in order to find those values which do not appear in either column. Once found I intend using conditional formating to highlight those values which are not duplicated in either column.
For example
Column A Column B
42.680 741.980
640.830 138.040
741.980 757.280
745.380 640.830
-70.200 -70.200
14.850 138.040
138.040 42.680
690.980
1,440.070
I have tried the following formula which compares a value in column A against the whole of column B to see if its unique or not, but I need a formula that can locate a unique value whether it be in column A or B.
Code:
=IF(ISNUMBER(MATCH($A2,$B:$B,0)),"Duplicated","Unique")
Thanks