0

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

2

1 Answer 1

0

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).

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.