I usually put a formula in column C that is:
=if(A1<>B1,1,"")
Then sort by column C to get all the 1's together, or do a search for 1's
Also if the sum of column C is 0 then there are no problems.
Hi Scott,
You didn't mention whether your data were numeric. If they are here is a simple formula that returns zero if the two ranges match, and gives you a positive squared difference number if they don't.
=SUMXMY2(A1:A2000,B1:B2000)
Happy computing.
Damon
And one more option, in addition to Travis' and Damon's
If you don't want to involve another column and see the difference easily, another option is conditional formatting.
Select the first cell (A1 in your case) and click Format > Conditional Formatting, then select Formula is, and type in =A2<>B2. Then click the Format button, and maybe the Patterns tab, choose a bright color like red, and OK, OK. Then copy A1, and paste special values, for Formats, for the rest of your data in column A.
Tom Urtis
Sorry, typo in formula should be =A1<>B1 if your data starts in A1.
Tom U
: Hi Scott,