Miscellaneous topics that do not fit into specific categories.
What you’re seeing is a structural comparison issue, not a real data change.
Excel’s Spreadsheet Compare doesn’t track columns by a persistent identity. It compares structure positionally. When you inserted a column at S and then deleted it, Excel internally shifted columns to the right and then back again. Even though the sheet looks identical afterward, the internal structure no longer matches the original file byte-for-byte.
During comparison, the tool interprets this as a shift - i.e. what was originally column S is now seen as “new” (added), and what was originally T is interpreted as “removed,” because the relative positions changed during the insert/delete operation.
In short, the compare tool is detecting column position changes rather than logical equivalence. This is expected behavior for tools that don’t track stable column IDs.
If you want to avoid this, avoid insert/delete operations and instead copy the original sheet or use version control at the file level. Otherwise, you can ignore these differences if you know no actual data or formulas were changed.
If the above response helps answer your question, remember to "Accept Answer" so that others in the community facing similar issues can easily find the solution. Your contribution is highly appreciated.
hth
Marcin