- How do I check whether a spreadsheet was modified?
- Load the version you sent and the version you received, then pick the column that identifies a row. Every row is sorted into matched, changed, added, removed or duplicate, and each changed cell is shown with its previous value.
- Does this verify the file itself, like a checksum?
- No. A checksum tells you that something changed; this tells you what changed. It compares the data row by row and cell by cell, which is what you need when the file was legitimately edited and you want to see the edits.
- What if rows were re-ordered?
- Row order does not matter. Records are matched on the column you choose as the identifier, so a re-sorted file still matches cleanly.
- Is my file uploaded anywhere?
- No. Both files are read and compared inside this browser tab. Nothing is sent to a server, there is no account, and closing the tab discards everything.
- What file formats does it accept?
- CSV and XLSX. Both sides can be different formats — a CSV against an XLSX works.
- How large a file can it handle?
- It has been measured on 100,000 rows a side. Large files take a few seconds to parse, and the comparison itself runs in well under a second.
- Can I export the differences?
- Yes. The result can be exported as CSV or XLSX, so you can attach it or keep it with the period’s paperwork.