My database have a table "tbl_Taxes" that is compose of three field "ID", "TAX1", "TAX2".<br><br>I'm in a form and I want to get the value of the field "TAX1" of the table "tbl_Taxes" where the "ID" is equal to "1"<br><br>I've tried the following line in the recordsource property of a text box but it didn't work<br><br>=DLookUp([tbl_Taxes]![TAX1],[tbl_Taxes],[tbl_Taxes]![ID]="1"
<br><br>What is the problem