I\'m using openpyxl to put data validation to all rows that have \"Default\" in them. But to do that, I need to know how many rows there are.
I know there is a way t
ws.max_row will give you the number of rows in a worksheet.
Since version openpyxl 2.4 you can also access individual rows and columns and use their length to answer the question.
len(ws['A'])
Though it's worth noting that for data validation for a single column Excel uses 1:1048576.
find length of row and length of col
column:
colummn=sheet['A']
output tuple-->(A1,A2,A3........An)
len(colummn)
output length--> 18
for row length
for i in sheet.iter_rows(max_row=0):
print(len(i))
break
This will give you length of header row where you put feature name . If you wan to get all rows length add max_row=len(colummmn) and remove break.