I'm using xlsxwriter to create my excel file data.xlsx. The file contain some cell with formula:
for example: =73-B2
Then I make a xhr query to read that data.xlsx by pandas (from django)
pd.read_excel('data.xlsx','sheet_name="dn")
However the first time read that file, value of the cell contains formula can't be get, except I manually open data.xlsx, save it.. then got the value.
I found related question but there is not a solution