This example assumes that Last is a Yes/No Field
Dim db As DAO.DATABASE, rst As DAO.Recordset
Set db = CurrentDb
Set rst = db.OpenRecordset("TableNameGoesHere", dbOpenDynaset)
With rst
.FindFirst "[Last] = " & True
If Not .NoMatch Then
MsgBox "Record Was Found And Position is " _
& rst.AbsolutePosition + 1
End If
End With
PaulF