There are several ways to do this. Which one you would use depends on where the calculation expression exists: in the control source, in an underlying query definition, or in code.
Consider whether you should really do this, though. If the value can be calculated whenever it's needed, it's usually better to do that than to store the calculated value. If you avoid storing it, you don't have to worry about recalculating and updating if one of the values it depends on changes.
But if you're sure you want to do it:
Is the form bound to the table you want to update?
Where is the expression that calculates the value? Rick Sprague
Yes, im sure I want to do this. The reason
is that I have a table that list 2 products and the prices
associated with the.
I have created a form with combo boxes where you can select
individual products and depending on the selection, the unit price is displayed. On the form I also have a text box that displays the sum of both products. This works fine.
But when I go look back at the table, only the product description, and its unit price is displayed and I cant figure out how to have the sum of both products visible in the table.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.