How about:
If Not IsNull(DLookup("Field1", "Test1_Table", "Field1=" & Me.Text1)) Then
This will only work if Field1 is defined as a numeric field, you will need delimiters if it is a datetime or text field.
EDIT:
The above statement is either equal to the value of Me.Text1, or is null. Another way to use DllookUp would be to say:
SomeVar=DLookup("Field1", "Test1_Table", "Field1=" & Me.Text1)
SomeVar will be either null, that is, not found, or return the value or Field1, which is equal to Me.Text1, because that is what we asked for in the Where statement. You can see from this that it is pointless to return the value of Field1, it is either found andequal to text1, or not found, and null. The olnly reason for getting the value of DlookUp is if you are looking up some other value or calculation in the table.
After this, it is important to remember that you are looking for an exact match and decimal values can be quite different far to the right of the decimal point, where you are unlikely to look.
