2

Is there any script handy to compare 2 excel sheets and print only their differences?

Gilles 'SO- stop being evil'
  • 807,993
  • 194
  • 1,674
  • 2,175
Sandosh Kumar P
  • 347
  • 1
  • 5
  • 14

2 Answers2

3

You can use xlsx2csv to export the sheets from an Excel file as CSV files, and then simply diff them.

DopeGhoti
  • 73,792
  • 8
  • 97
  • 133
1

Convert XLS into csv files with comma delimiters then sort the csv files and then do gvim -d csv1 csv2

this will simply print the differences in the XLS files