I am apologizing in advance if I am not posting this question correctly. I have had a read at the posting guide and will try to see if I can do it right this time.
I have an AfterUpdate event attached to a combo box called ProductCombo. This event is a Dlookup function that looks up the supplier for the product that was chosen from the ProductCombo control and return the supplier name into the supplier control. Funny thing is when I set it up it worked fine. Today I went to enter another entry and it tells me that I have a runtime error 3075 missing operator in query expression 'ProductCombo= 6 inches Stove Beauty Ring'
Hope this came out right. this is the first time I am using this. Cheers and thanks
I have an AfterUpdate event attached to a combo box called ProductCombo. This event is a Dlookup function that looks up the supplier for the product that was chosen from the ProductCombo control and return the supplier name into the supplier control. Funny thing is when I set it up it worked fine. Today I went to enter another entry and it tells me that I have a runtime error 3075 missing operator in query expression 'ProductCombo= 6 inches Stove Beauty Ring'
Code:
Supplier = DLookup("Supplier", "ProductT", "ProductCombo=" & Product)
Comment