I am trying to load an Excel workbook into python using openpyxl's load_workbook() function but when the code gets to that line it throws an error which states "ValueError: Max value is 52".
This is the line that breaks the code:
certifGenerator = openpyxl.load_workbook(generatorFileName, keep_vba = True)
I have tried searching online but can't find anything regarding this issue.