You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tested your scenario/case using latest version of Aspose.Cells for Python via .NET using the following sample code and it works fine. The output file is ok.
e.g. Sample code:
#import the python packageimportaspose.cellsfromaspose.cellsimportLicense,Workbook,FileFormatType#load a template XLSX fileworkbook=Workbook("Book1.xlsx")
#Get the first worksheetworksheet=workbook.worksheets[0]
#Get the "A1" cellcells=worksheet.cellscell=cells.get("A1")
#Write "Hello World" to "A1" in the first sheetcell.put_value("Hello World")
#save this workbook to XLSXworkbook.save("out1.xlsx")
#Get the first worksheet
worksheet=workbook.worksheets[0]
Error: worksheet have no attribute worksheets
??
The text was updated successfully, but these errors were encountered: