I wrote this simple program for writing column headers to empty cells above a data table in a pre-existing Excel .xlsx file. I don’t get any errors when I run this, but when I open the file (with a single sheet), the whole table is gone and it’s blank; there’s not even any of the headers that it was supposed to write in. Can anyone please help me figure out why this happened? I can get the data again, I just need this to work.
JavaScript
x
19
19
1
import pandas as pd
2
from openpyxl import load_workbook
3
headers = []
4
5
# code not shown, but just prompts user for column headers and saves in list 'headers'
6
7
#open .xlsx file
8
book = load_workbook(r'path.xlsx')
9
writer = pd.ExcelWriter(r'path.xlsx', engine='xlsxwriter')
10
11
#write column headers from list into empty cells
12
writer.columns = headers[:]
13
14
15
#save and close
16
writer.save()
17
writer.close()
18
book.close()
19
Advertisement
Answer
You can try out this code
JavaScript
1
12
12
1
import pandas as pd
2
3
# Read excel file (.xlsx)
4
book_df = pd.read_excel(r'path.xlsx')
5
6
# headers is list of header names like ['header_1','header_2','header_3']
7
book_df.columns = headers
8
book_df.to_excel(r'modified_file_name.xlsx',index=False)
9
# In case you want the file in the same name , make sure the file is not open else you may get permission error
10
book_df.to_excel(r'path.xlsx',index=False)
11
12