You can either
- Use
row[0].internal_value
.
Or
- Use
data_only=True
when you load your workbook.
(For example, workbook = openpyxl.load_workbook("yourxlsx.xlsx", data_only=True)
)
The second option is good when you are sure you don't wish to ever get the original formula from the workbook.