I\'m able to open my pre-existing workbook, but I don\'t see any way to open pre-existing worksheets within that workbook. Is there any way to do this?
After searching a bit about the method to open the existing sheet in xlxs, i discovered
existingWorksheet = wb.get_worksheet_by_name('Your Worksheet name goes here...') existingWorksheet.write_row(0,0,'xyz')
You can now append/write any data to the open worksheet. I hope it helps. Thanks