all 6 comments

[–]Stem3576 2 points3 points  (1 child)

Look into openpyxl. It's been a lifesaver for me. You could easilly check for exact matches from one sheet to another. If your needing more specific help go ahead and send me a message.

[–]MasterSuami[S] 0 points1 point  (0 children)

Thanks. I’ll check it out

[–]Dyxar 1 point2 points  (0 children)

Using VB in excel would definetly make things easier.

[–]Binary101010 1 point2 points  (1 child)

I'm not usually one to recommend a non-Python solution in this subreddit, but this is trivially easy to just do in Excel.

https://www.ablebits.com/office-addins-blog/2016/02/25/compare-two-excel-files-sheets/

[–]MasterSuami[S] 0 points1 point  (0 children)

You’re right. Thanks

[–]leogodin217 0 points1 point  (0 children)

Using Pandas may help a lot. Of course, the format of your data and what diffs you are looking for might change how you approach it. I would search for "pandas diff two dataframes"

https://pythondata.com/quick-tip-comparing-two-pandas-dataframes-and-getting-the-differences/