How can I use openpyxl to read an Excel cell value and not the formula computing it? October 6, 2023 by Tarik wb = openpyxl.load_workbook(filename, data_only=True) The data_only flag helps.