Dim sWhere as String
sWhere = "Test1_Table.Field1=" & Me.Text1
If Me.Text1=DLookup("Field1"CInt(Me.Text1)=DLookup("Field1", "Test1_Table", sWhere) Then
MsgBox "It works"
Else
'do something else
End If
Trying to do too much vba inside the DLookup could be an issue?
