I have an Excel file with many rows and it gets many entries daily. That's why I would like to scroll down the file to last row with data.
To find the last row, I use:
last_row = workbook.sheets[0].range('A1').end('down').row
How could I scroll down to it using Python (and preferably XLWings module)?