Positioning when opening a list

Hello everybody,
can you suggest me a way to automatic choose (by code) a position in a list when I open it?

For example when opening customer invoice list it always goes in the middle of the list… and I need a lot of scrolling to reach the last invoice.
Does anyone know how to automatic say that when I open this page the system automatically will go to the end of the list and/or in a specific position (for example the ones beginning by ‘11-’)?

thanks in advance

FINDLAST?

Or you could just train the user to type Ctrl+End if you are in the RTC, which it sounds like you are.

This should be an automatic positioning when opening the page. Not leaving this to user…

I should put some findlast code in the page in the ‘OnOpenPage’ event, maybe?

Ok, thank you.

I’ve done it adding this code to the OnOpenPage

IF FINDLAST THEN
SETRANGE(“No.”);

IF FINDLAST THEN;

is enough