Dec-29-2022, 11:13 PM
I'm assuming you are using openpyxl. I may be wrong since only 1 line in your post is valid based on "xl" being openpyxl.
The error is here:
https://openpyxl.readthedocs.io/en/stable/tutorial.html
The error is here:
wsData = wb.worksheets["Data"]Worksheets is not a dictionary. It cannot be indexed by name. You can do this.
wsData = wb["Data"]After you change that you'll soon learn that worksheets don't have a method "Range()". This is how you can set the number format for a range of cells.
import openpyxl as xl wb = xl.load_workbook("test.xlsx") sheet = wb["Sheet1"] for cell in sheet["D2:O2"][0]: cell.number_format = "0.00%"Have you looked through any of the openpyxl documentation?
https://openpyxl.readthedocs.io/en/stable/tutorial.html