When I'm trying to access the value of a cell that has a formula (=E3*X
) I get None
even with data_only=True
from openpyxl import load_workbook
book = load_workbook("sales.xlsx", data_only=True)
sheet = book['sales']
print(sheet["G3"].value)
book.close()
>> Output: None
>> Cell's actual value: =E3*7.5 (60, E3=8)