Hi,
I am trying to check if a record exits in a table.
Dim cert As String
Dim existingRec As Variant
existingRec = DLookup("[Certificate]", "[Fire]", "'cert' = 'cert'")
If existingRec = Null Then
Else
MsgBox "The Certificate " & existingRec & " is in the database"
End If
Note - Certificate is a column in the table "Fire"
Problem is that existingRec only finds the first value in the Certificate column,
How do I get to check the entire Certificate column?
Thanks