Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Write pandas dataframe to xlsm file (Excel with Macros enabled)

Writing a pandas.DataFrame into an Excel Workbook in the .xlsx format is as simple as:

import pandas as pd
df = pd.DataFrame({'firstColumn' : [5, 2, 0, 10, 4], 'secondColumn' : [9, 8, 21, 3, 8]})
print(df)
df.to_excel('test.xlsx')

which gives:

   firstColumn  secondColumn
0            5             9
1            2             8
2            0            21
3           10             3
4            4             8

and the corresponding Excel file.

Is there also a possibility to write the DataFrame into a .xlsm Excel file? This is actually more or less the same as .xlsx, but with the possibility enabled to store VBA macros within the file. I need this because I want to insert and run a VBA macro after creating the file.

However, when trying this on a regular xlsx file, I get the following error message in a pop-up:

The following features cannot be saved in macro-free workbooks: VB project.
To save a file with these features, click No, and then choose a macro-enabled file type in the File Type list.
To continue saving as macro-free workbook, click Yes.

I can then manually choose to save the file as .xlsm which will have my macro included. However, I would prefer to do this automatically without the extra step.

The documentation for the to_excel method suggests that this should be possible (see engine parameter). However, I don't understand how to enable this.

When I simply change the output filename to *.xlsm, a .xlsx file is created which is named .xlsm. When I try to open it, I get

Excel cannot open the file 'myFilename.xlsm' because the file format or file extension is not valid. Verify that the file has not been corrupted and that the file extension matches the format of the file.

If I manually change the extension to .xlsx, I can open it again.

Regarding this part of the pandas documentation:

openpyxl: This includes stable support for OpenPyxl 1.6.1 up to but not including 2.0.0, and experimental support for OpenPyxl 2.0.0 and later.`

My version of Openpyxl is 1.8.6. Updating to 2.1.4 did not solve the problem. Neither did updating XlsxWriter from 0.63 to 0.6.6.

Using df.to_excel('test.xlsx', engine='openpyxl') as suggested also did not solve the problem.

like image 811
Dirk Avatar asked Jan 27 '15 11:01

Dirk


People also ask

Does pandas work with XLSM?

read_excel. Read an Excel file into a pandas DataFrame. Supports xls , xlsx , xlsm , xlsb , odf , ods and odt file extensions read from a local filesystem or URL.

Are macros allowed in XLSM?

XLSM files are spreadsheet files that support macros.


1 Answers

Pandas requires that a workbook name ends in .xls or .xlsx. It uses the extension to choose which Excel engine to use.

You could pass a temp name and then overwrite it with something like this:

import pandas as pd

df = pd.DataFrame({'First' : [5, 2, 0, 10, 4], 
                   'Second' : [9, 8, 21, 3, 8]})

writer = pd.ExcelWriter('test.xlsx', engine='xlsxwriter')

df.to_excel(writer, sheet_name='Sheet1')

workbook  = writer.book
workbook.filename = 'test.xlsm'
# !! Won't load in Excel !!

writer.save()

This will create an Excel file with the a .xlsm extension.

However, due to a feature called "extension hardening" Excel won't open this file since it knows that it doesn't contain a macro and isn't actually an xlsm file. (That is the Excel error that you report above.)

You can workaround this with recent versions of XlsxWriter by extracting the VbaProject.bin macro file from a real xlsm file and inserting it into the new file:

import pandas as pd

df = pd.DataFrame({'First' : [5, 2, 0, 10, 4], 
                   'Second' : [9, 8, 21, 3, 8]})

writer = pd.ExcelWriter('test.xlsx', engine='xlsxwriter')

df.to_excel(writer, sheet_name='Sheet1')

workbook  = writer.book
workbook.filename = 'test.xlsm'
workbook.add_vba_project('./vbaProject.bin')

writer.save()

See the Working with VBA Macros section of the XlsxWriter docs for more information.

like image 116
jmcnamara Avatar answered Sep 18 '22 13:09

jmcnamara