please help me in displaying the data from table. like i have 2 feilds item no and item name.
when ever i enter item no in the form then the item name realted to that item no should e displayed.
please help me
Private Sub Item_No_AfterUpdate()
Me.Item_Name = DLookup("[Item Name]", "YourTableName", "[Item No] = '" & Me.Item_No & "'")
End Sub
but at the time of running the form i am getting the runtime error
please help me
yes i chenge the table name to item_table even then it is giving me the run time error.
or is it due to that the table working behind the form is inventory_table and i want to display the data from the item_table.
please help me