Have Label or TextBox countain sum of 2 values in Form

bugsy

Registered User.
Local time
Today, 13:05
Joined
Oct 1, 2007
Messages
99
Hey All

how can I have a Label or TextBox countain sum of 2 values in Form ?
Form is based on a table; I'd rather not change it to a query.

I think I've done it before; but don't recall exactly how.
 
how can I have a Label or TextBox countain sum of 2 values in Form ?
Set the controlsource to:
Code:
=Nz([YourFieldName1Here],0) + Nz([YourFieldName2Here],0)
Form is based on a table; I'd rather not change it to a query.
Not sure why because a query is how it really should be set up. Believe it or not, when you use a table, it is really only a view (query) anyway but it is unordered.
 
Thanks Bob !
Nz worked great.
 

Users who are viewing this thread

Back
Top Bottom