I have a python script on macOS that opens a .xlsm file and executes a macro, but when I reference my macro on line 1, it opens Excel and prompts me to click "Enable Macros".
At the moment, I have a sleep function so I can click "Enable Macros" manually, but is there a way to program this?
1 wb = xw.Book('./filename.xlsm')
2 time.sleep(5)
3 my_macro = wb.macro('some_macro')
4 my_macro()