Do you mean you want to fill out an order form? i.e., choose a product from a combo and have the related price show up in the unit price column? <br>
<br>
If so, one answer is to add the price as a field in the rowsource of your product combo and then in the AfterUpdate event of the product combo, set the price field to the value of the price column in the product combo box. This method will allow you to manually override the price on your order form without changing the price in the product table.<br>
<br>
So, for example, let's say you have a combo called Product and a text box called Price on your form. If the rowsource of your Product combo has two columns (Product Name and Price), then in the AfterUpdate event of the Product combo, there would be a line of code that reads<br>
<br>
Me![Price] = Me![Product].Column(1)<br>
<br>
Note that columns in a rowsource are numbered consecutively from zero. That's why the price is in Column(1).<br>
<br>
Elizabeth's method will work if you always want to use the existing product price with no changes or if you want the price in the product table to change when you override it on the order form.<br>
<br>
Please ask again if the solutions aren't clear.