I have different Python list variables(data1, data2, data3 ect) containing data which I want to put into an already existing excel sheet. Presently My loop goes like this.>
Try using
sheet.max_row
it will return the last row value, You can start writing the new values from here.
max = ws.max_row for row, entry in enumerate(data1,start=1): st.cell(row=row+max, column=1, value=entry)
Hope it helps.Happy Coding :)