Reputation: 19164
I am working on .xlsx using python & I am using openpyxl for the same.
I have the column name and row number. Can I find the value of that box from xlsx?
for example :
column - P
row - 369
Can I find the value from Pth column & 369th row of xlsx ?
Upvotes: 1
Views: 454
Reputation: 5942
How about:
d = ws.cell(row = 4, column = 2)
print d.value
See the documentation.
Upvotes: 3