show/hide this revision's text 2 Converted Me.Text1 to Int (CInt)
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?

show/hide this revision's text 1
Dim sWhere as String
sWhere = "Test1_Table.Field1=" & Me.Text1
If 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?