FindRecord ""

rockman

Senior Member
Local time
Yesterday, 23:31
Joined
May 29, 2002
Messages
190
Is there a way to use FindRecord to find the first occurance of a particular field with a zero-length string?

The following code generates an error (requesting that criteria be supplied for the FindRecord method)...

fldLastName.SetFocus
DoCmd.FindRecord ""

Any help would be appreciated,
Jeff
 
Try this:

Me.Recordset.FindFirst "fldLastName Is Null"
 
Thanks for your response cpod.

Works like a charm!
 

Users who are viewing this thread

Back
Top Bottom