Here is one way (but, there's probably a better way):
Load both csv files into the same workbook either as seperate sheets o
on the same sheet. I would probably use seperate sheets so that I coul
reference any differences a little easier. (A1 on sheet 1 should = A
on sheet 2)
Then insert a "difference" sheet (SHEET3) and in A1 use this formula:
=IF(SHEET1!A1=SHEET2!A1,1,0)
Then select SHEET3 A1 and copy. Then select on SHEET3 all the cell
corrisponding to your data and paste.
Cells that are the same will be a 1 and any differences will be a 0.
To make it easier to see which cells are different, you can use
conditional format by selecting all the cells on sheet 3 and selec
format/conditional formatting from the menu. Make condition 1 = Cel
value is, equal, 0. Click format and then "patterns tab" and select RE
or some other highly visible color. Then OK and OK.
Presto: All the cells that are different will now be RED!
GrizzlyBea