I have a test table where I'm using the Last() function but it seems to not work, it always return the 2nd record when i have 10 records..
SELECT LAST(Date_Received) FROM serviceRS;
returns the 2nd record
SELECT FIRST(Date_Received) FROM serviceRS;
returns the 3rd record
X_X