Positioning on the last records on a grid

Hi, when i open a grid, I need to position on the last record and refresh the grid. How can I do that? Thanks for your time.

The most easy way is to order your grid using a descending key. That way the latest record becomes first. Actually I haven’t found other ways of setting a certain record.

Albert, that is right.
in your grid go to sql. after FROM table_name
ORDER BY field_name desc

thank you. i wil test that.