It is said that argument data_only=True
helps read data in cell from excel.
I want to get the value in cell B10
which contains a simple formula,upload the data file in dropbox ,please download it and have a try with below codes:
please download and have a try
dest_fn = "valuation.xlsx"
from openpyxl import load_workbook
wb = load_workbook(dest_fn, data_only=True)
ws = wb["valuation"]
print(ws['B10'].value)
#it shows nothing!
How can read the value in the cell then?
Are there some other python lib which can read the value in cell containing a formula?