DLookup :(

janed

Registered User.
Local time
Today, 06:10
Joined
Feb 6, 2002
Messages
60
Another question on DLOOKUP. I want its criteria to be based on two fields on the form, how is this done?

Also does anyone know where i could find a working example this function.

Thanx
 
Don't know if this will help but here is an example of a DLookup that I use on a combo box. It is there to check to see if the candidate has already been entered into the class before the user is allowed continue:

If Not IsNull(DLookup("EDClassID", "tblEntryDetails", "[EDClassID]= " _
& Me![EDClassID] & " AND [EDEntryID] = " & Me![EDEntryID])) Then
 
Look in the Help menu for almost any question that you have,
 

Users who are viewing this thread

Back
Top Bottom