Read Excel cell value and not the formula computing it -openpyxl

wb = openpyxl.load_workbook(filename, data_only=True)

The data_only flag helps.

Leave a Comment