I'm very new at programming and excel macros in general, so be gentle.
Seems that when a workbook is created using python that the macros are not available. Even if I shut down, reboot, and reopen the files the created by python the macro options are still missing. However, if I manually create the excel file, then use python code to open the manually created excel file and run the macro it works fine.
Sample code provided, but seems that I may have an improper setting within excel or on the computer (government computer, though I have admin rights). I have enabled all macros in the macro settings, reviewed the available literature on this site, but am still having issues.
import win32com.client
xl = win32com.client.Dispatch("Excel.Application")
xl.Visible = True
wb = xl.Workbooks.Add()
ws = wb.Worksheets.Add()
cell = ws.Cells(1)
cell.Value = 'text'
wb.Close(True, r'c:\AcousticAutomation\TestFolder\TestData\test.xls')
When I manually open ‘test.xls’, no macros are available in the macros section; therefore, I did not add the macro run line as the code will crash.
The same issue occurs if I convert/rename a txt file to cvs file, again when manually opening the csv in excel the data are there, but no macro options are avaialble:
os.rename('c:\..file path...\test.txt', 'c:\..file path..\test.csv')
However, if I manually create the file and use:
import win32com.client
xl = win32com.client.Dispatch("Excel.Application")
xl.Visible = True
wb = xl.WorkBooks.open(r'c:\..test file path..\test.xls’)
xl.Run(‘DeleteTopRows')
The macro is identified and works fine. So, I have tried multiple variations of creating workbooks, but it seems that whenever the file is created using python the macros “disappear” and the code crashes as the macro “does not exist” at that time. I hope I have described my issue well enough, any suggestions?
Thanks so much.