Is this the last record?

J

John Baker

Is there any way of knowing (perhaps a function) if a form is looking at the
last record. I'm trying to find an easy way without using ADO.

Any help greatly appreciated

John Baker
 
V

Van T. Dinh

IIRC:

If Me.CurrentRecord = Me.RecordseClone.RecordCount Then
'On "last" Record
 
Top