I have a form called InventoryDetailForm with a control called SupplierID. The record source for the Form is a query called PriceListQuery. I also have another table called SupplierAccountTable, in which there is a field called Discount%, as well as a related SupplierID field. I want to display this field on the form - hence:
=DLookUp("[Discount%]","SupplierAccountTable","[SupplierID]=" & [SupplierAccountTable]![SupplierID])
I don't want to add the SupplierAccountTable to the main PriceListQuery as then I cannot edit the records, which is why I am messing around with dlookup.
Any help welcome...
Thanks,
N