I'm looking for a way to perform version control on excel files in git. I understand this question has been asked before, but I couldn't find an option that will work for an excel file with multiple sheets in it. For instance, in the suggestions offered here, one way is to save .xlsx file as a csv file and use git diff. However, this option doesn't work when there are multiple sheets. I'll be able to save only the active sheet as csv file.
The second option that has been suggested on SO is GIT XL. From what I understand from the documentation of GIT XL, the diff option will allow me to view the lines that are altered in the command prompt. For example, if there are 10 columns in an excel sheet and I replace the value in all ten columns how can I view the data that was present previously. To give a better context, the contents of the sheet in excel is overwritten every time I run a script for different values of parameters. In such a case, I don't want to re-run the script each time if I want to view the results of a previous run.
The third answer that I found useful is available here, using xls2text. Again, I would like to know how this will work when there are multiple sheets.
Any suggestions will be of great help!