Hi!
I have about 55 txt files that exists as pairs. For example, File A1 is a pair of File A2, likewise with File B1 and File B2.
My goal: Compare the differences between columns & rows, and spread them out like:
| Column A1 | Row A1 | Value A1 | Column A2 | Row A2 | Value A2 |
For comparison - the anchor is File _1. Hence, A1 is the anchor of A2, and B1 the anchor of B2.
This is a simple application of it. But there are some more rules:
- There can be scenarios where the first row is not the header due to a myriad of issues. The headers are fixed for each file, some will have more or less.
- The order of the columns can be different.
- The order of the rows can also be different.
The order is important, so the order of the columns must be standardized first, then the rows follow next.
At the end of it, I need to output to an Excel (.xslx) with multiple sheets. Each sheet corresponding to the name of the file. E.G: A, B, etc.
Thanks!