I have to compare different datasets to find deviations between them. Datasets are always a multicolumn table (up to 1000 columns).
Currently I use plain Excel workbook and compare 2 sheets cell-by-cell with a formula:
=IF(Master!A2=Test!A2);0;Master!A2&"/"&Test!A2)
So it is a zero if no deviation and 2 values separated with slash if they differ.
However, if the input (plain text/ CSV) files are too big, like containing >50k rows, Excel becomes veeery slow.
Is there any solution to do this using PowerPivot?