Phako Perez
unread,Aug 24, 2018, 9:13:32 PM8/24/18Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to django...@googlegroups.com
Hi everyone,
I’m trying to get data from an excel file.
Every thing goes fine till cell contains an excel formula, such cases is getting null values
Here I open the book
———————-
report_book = openpyxl.load_workbook(filename, data_only=True)
sheet_list = report_book.sheetnames
worksheet = report_book[sheet_list[0]]
Here I get value for each column
———————-
row_num = 3
for k in COL_H[row_num]['CL']:
bb = BASE + k
value = worksheet.cell(row=row_num, column=bb).value
Thanks in advance
Happy weekend!!!