Python Forum
Search Results
Post Author Forum Replies Views Posted [asc]
    Thread: How to import data from database to excel
Post: RE: How to import data from database to excel

for row in result: sheet.append(row) In that, you need to make a row as List as follows: for row in result: listrow = list(row) sheet.append(listrow)
sm51251 General Coding Help 1 3,517 Oct-09-2019, 04:39 PM

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020