The .XLS comparison is comparing the active worksheets and not the first worksheets as stated in the file format description.
To compare the first sheets, the line
should be changed to
in the script Helpers\XLS_to_CSV_Single.vbs
.
On the other end, it could be useful to give the BC users the possibility to spcify the sheet nr (as a parameter)
To compare the first sheets, the line
Code:
With xls.ActiveWorkbook
Code:
With xls.ActiveWorkbook.WorkSheets(0)

On the other end, it could be useful to give the BC users the possibility to spcify the sheet nr (as a parameter)

Comment