No way to do that that I'm aware of.
However, you can set the table up to let you quickly get to any row using command-F and a few keystrokes.
Add a column to your table. Enter the formula below in the first non-header cell in the new column:
=qwe&row()
Fill the formula into all cells of that column.
Once that's done, you can get to any row in the table by pressing command-f to open the find dialogue, enter qwe followed by the row number, then clicking Find next.
If you don't need that pin point precision, use this revision to the formula:
=IF(MOD(ROW(),20)=0,"qwe"&ROW()/10,"")
Fill down as before.
This will place the three character text string and the row number (without it final 0) in every twentieth row.
The search key will be restricted to even numbers, one digit shorter than the number of the row that is the desired target.
Regards,
Barry