I have one excel file with 3 sheets, each sheet has a set of values within cell A1. How would I loop through the sheets and calculate the values?
I'm new to python and have been struggling to find a solution to this problem. Thanks
I have one excel file with 3 sheets, each sheet has a set of values within cell A1. How would I loop through the sheets and calculate the values?
I'm new to python and have been struggling to find a solution to this problem. Thanks
Checkout this Code #3 where you can update sheet by looping sheet = wb.sheet_by_index(x) and retrieve the cell value sheet.cell_value(0, 0).