Column 1 | Column 2
A | A
B | B
C | C
D | D
E | F
G | G
H | I
Column 1 and Column 2 supposed to match on each row ( A supposed to match with A, etc) so therefore this excel suppose to return that there are discrepancies on row E and H.
What is the fastest way to detect if there is discrepancy on this excel?
I prefer not to use for each row as I think that repeated loop on a lot of lines may result in a lot of processing time.
actually as you are talking about processing time, a simple loop comparing the columns is the fastest of anything people keeps suggesting in our forum…