1
我想設置特定行沒有&列特定的工作表(incident_sheet3) 試圖set_row/set_column和set_size沒有設定的行和列的xlsxwriter蟒蛇
incident_excel_file = xlsxwriter.Workbook("incidents_excel.xlsx")
incident_sheet = incident_excel_file.add_worksheet(name="incidents")
incident_sheet2 = incident_excel_file.add_worksheet(name="Handoff Template")
incident_excel_file.set_size(100,100)
incident_sheet.set_column(0,4,25)
incident_sheet2.set_column(0,15,15)
incident_sheet3 = incident_excel_file.add_worksheet()
incident_sheet3.set_column(0,1)
用於set_column設定爲細胞寬度定義的範圍
我的問題是,我怎樣才能在表單中設置X行和Y列? – ajay
在下面看到我的更新。 – jmcnamara