Morning,
I have a very simple VBA code which refreshers the addin i have in excel. This is below
Sub Refresh()
ExecuteExcel4Macro "FDSFORCERECALC(False)"
ActiveWorkbook.Save
ActiveWorkbook.Close
End Sub
I have tried using xlsxwriter but i am unable to write anything but a macro to press which still means manually opening each file. Is there a way to automate this code into Python, so i can just iterate through files and refresh as I go?
Thanks