I have an excel workbook with multiple sheets and I am using pandas to access it. The first sheet is the one that contains formulas that access the rest of the sheets and perform some calculations. When I access the first sheet and print the data frame, the columns that uses formulas are printed as Nan. How can I get the value instead of Nan?
import numpy as np
import pandas as pd
refitemPath = ".\\170310-test.xlsx"
xlsxFile = pd.ExcelFile(refitemPath)
df = pd.read_excel(xlsxFile, 'Result')
print(df)
and the actual values