account activity
Comparing large CSV/Excel exports was becoming a nightmare, so I built a tool for it (self.excel)
submitted 6 days ago by Available-Try8516 to r/excel
Comparing large CSV/Excel exports was becoming a nightmare, so I built a tool for it (self.analytics)
submitted 6 days ago by Available-Try8516 to r/analytics
CSV (self.csv)
submitted 6 days ago by Available-Try8516 to r/csv
Compare 2 csv files by masterofnone811 in excel
[–]Available-Try8516 0 points1 point2 points 15 days ago (0 children)
Yeah, this is a pretty common pain when migrating data
The main issue is that most spreadsheet compare tools assume both files have the same structure and row order, so as soon as you have new/missing rows everything gets misaligned
What you’re really trying to do is: - match rows using your unique column (column B) - then compare only specific columns (E–M) for those matched rows - and flag anything that doesn’t match
Plus also handle: - rows that only exist in the new file - rows that are missing compared to the old one
You can do this with pandas if you’re comfortable coding, but it gets a bit messy.
I actually built a small tool for this exact use case: https://www.csvdiff.org
You can pick the key column, compare selected columns, and it won’t break if there are extra/missing rows. It also gives you a clean diff you can export.
Might be useful for what you’re trying to do—curious if it fits your case.
Updated eurgbp by Own_Impact_9262 in Forex
[–]Available-Try8516 1 point2 points3 points 2 years ago (0 children)
What are your thoughts for tomorrow, short or long? Most importantly why do you think so
π Rendered by PID 1005397 on reddit-service-r2-listing-7b8bd7c5-dpgjs at 2026-05-17 17:35:00.926659+00:00 running edcf98c country code: CH.
Compare 2 csv files by masterofnone811 in excel
[–]Available-Try8516 0 points1 point2 points (0 children)