Comparing Excel Files

  • Thread starter Thread starter Amr Tabbarah
  • Start date Start date
A

Amr Tabbarah

Does anyone know about a Macro or Add-in that compares 2 Excel
files/sheets in a similar manner to Compare in Word?

Thanks.
 
Amr said:
Does anyone know about a Macro or Add-in that compares 2 Excel
files/sheets in a similar manner to Compare in Word?

One way is to save two sheets as CSV files and use Word to compare the CSV
files. (It's awkward, but it gets the job done.)
 
1. One method I like is to make a third sheet to show differences an
put a formula like this in all cells :-
=Sheet1!A1-Sheet2!A1 ....for numbers
=IF(Sheet1!A1<>Sheet2!A1,"Different","")

2. There are macros/addins available. I think I have seen the
somewhere like MVP or other Excel websites. Try searching the web
 
BrianB said:
1. One method I like is to make a third sheet to show differences and
put a formula like this in all cells :-
=Sheet1!A1-Sheet2!A1 ....for numbers
=IF(Sheet1!A1<>Sheet2!A1,"Different","")

This works fine for some kinds of differences, but doesn't handle well
things like an inserted row. Word works better if there might be inserted
or deleted rows or columns.
 
Back
Top