Hello,
I am new to Access and am very confused. I read about as much as I could on how access works, and have a pretty decent idea now. But I have spent too much time trying to teach myself access, because this will probably be the only time I need to use it.
Anyways.. I have two tables, "cableconductor" and "eMax Prices". I am trying to take an item number from cableconductor, look it up in eMax Prices and return with a price of the item and replace the current price in that cell in cableconductor. I wrote the following code:
dlookup("[Unit Cost]", "[eMax Prices]", "[Item No] =" & [eMax#])
I placed this expression in the query design section of access. It returned with the correct prices, but in query form. I'm guessing I am doing this in the wrong section, should I be using VBA? How can I use this code or similar code to actually replace the current contents of the cells with the updated prices?
Your help is very much appreciated. Thanks.