Skip to Content
Menu
This question has been flagged
1 Reply
1927 Views

Hi, I want to generate an automatically sequence number when i print xls report. as my xls report generate different employees name so i want to generate a sequence number in the excel report too

Avatar
Discard
Author Best Answer

just take a variable and give it value 1 and then call it where you are deploying the field and then in last give it the value for increment.

For example:

a=1

sheet.write(row, col, a, cell_border)

a = a+1
Avatar
Discard

Hello Mr. Tauqir
what is cell_border for?