How to make an Access TextBox, with a Numberic Value, Equal to DLookup with the TextBox as the Criteria - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T02:51:15Z http://stackoverflow.com/feeds/question/882739 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/882739/how-to-make-an-access-textbox-with-a-numberic-value-equal-to-dlookup-with-the-t 0 How to make an Access TextBox, with a Numberic Value, Equal to DLookup with the TextBox as the Criteria DFM 2009-05-19T13:25:35Z 2009-05-20T00:02:57Z <p>I really have no idea why this doesn't work, but I am trying to get the following to work:</p> <pre><code>If Me.Text1 = DLookup("Field1", "Test1_Table", "Test1_Table.Field1= _ &amp; Me.Text1") Then MsgBox "It works" Else End If </code></pre> <p>The above code is a test code for a larger project that I am working on, so the table and field names are just for testing. Also, Field1 is a numberic field. Basically, when I enter 1 within Text1, I would like the DLookup feature to find 1 within Test1_Table.Field1 and give me a message stating that it works. I am able to get this to work with string values such as:</p> <pre><code>If Me.Text1 = DLookup("Field1", "Test1_Table", "Test1_Table.Field1='" _ &amp; Me.Text1 &amp; "'")Then </code></pre> <p>Likewise this works, when 1 is entered in the Text1:</p> <pre><code>If 1 = DLookup("Field1", "Test1_Table", "Test1_Table.Field1= _ &amp; Me.Text1") Then </code></pre> <p>However, I've tried:</p> <pre><code>If Me.Text1 = DLookup("Field1", "Test1_Table", "Test1_Table.Field1= _ &amp; Forms!TestSearch_Form!Text0)Then </code></pre> <p>and</p> <pre><code>If Me.Text1 = DLookup("Field1", "Test1_Table", "Test1_Table.Field1= _ &amp; Forms!TestSearch_Form!Text0)Then </code></pre> <p>etc...</p> <p>I've tried many different combinations and it seems as though I cannot get the two to equal, when dealing with numeric values. Does anyone know what I am missing or have any ideas?</p> <p>Thank you,</p> <p>Damion</p> http://stackoverflow.com/questions/882739/how-to-make-an-access-textbox-with-a-numberic-value-equal-to-dlookup-with-the-t/883543#883543 0 Answer by GuinnessFan for How to make an Access TextBox, with a Numberic Value, Equal to DLookup with the TextBox as the Criteria GuinnessFan 2009-05-19T15:43:06Z 2009-05-19T17:15:58Z <pre><code>Dim sWhere as String sWhere = "Test1_Table.Field1=" &amp; Me.Text1 If CInt(Me.Text1)=DLookup("Field1", "Test1_Table", sWhere) Then MsgBox "It works" Else 'do something else End If </code></pre> <p>Trying to do too much vba inside the DLookup could be an issue?</p> http://stackoverflow.com/questions/882739/how-to-make-an-access-textbox-with-a-numberic-value-equal-to-dlookup-with-the-t/883997#883997 2 Answer by Remou for How to make an Access TextBox, with a Numberic Value, Equal to DLookup with the TextBox as the Criteria Remou 2009-05-19T17:12:29Z 2009-05-19T18:50:14Z <p>How about:</p> <pre><code> If Not IsNull(DLookup("Field1", "Test1_Table", "Field1=" &amp; Me.Text1)) Then </code></pre> <p>This will only work if Field1 is defined as a numeric field, you will need delimiters if it is a datetime or text field.</p> <p>EDIT:</p> <p>The above statement is either equal to the value of Me.Text1, or is null. Another way to use DllookUp would be to say:</p> <pre><code> SomeVar=DLookup("Field1", "Test1_Table", "Field1=" &amp; Me.Text1) </code></pre> <p>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. </p> <p>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.</p> http://stackoverflow.com/questions/882739/how-to-make-an-access-textbox-with-a-numberic-value-equal-to-dlookup-with-the-t/885624#885624 0 Answer by DFM for How to make an Access TextBox, with a Numberic Value, Equal to DLookup with the TextBox as the Criteria DFM 2009-05-20T00:02:57Z 2009-05-20T00:02:57Z <p>If CInt(Me.Text1) = DLookup("Field1", "Test1_Table", "Test1_Table.Field1=" &amp; Me.Text1) Then...</p> <p>The above code works perfectly. Thanks to Guiness, I was able to utilize my original code and just add CInt to the if statement.</p> <p>Also, thank you everyone for your input.</p> <p>DFM</p>