Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Calculations on a continous form

Status
Not open for further replies.

kpryan

Technical User
Aug 24, 2005
282
US
Hi All,

Could I have some help with this please.
I have a continuous form which has some number fields in the detail section.
I have set up the fields vertically in the detail section.
In the form footer to add up the columns I have used this eg:
=sum([Fieldname])in a text box.
This works ok to add up the first field. What I want to be able to do is to add up all the fields together.
I have tried this =nz([textbox1])+nz([textbox2]) but this will only show the result for individual text boxes.
What is the correct formula to get this to work.

Many thanks,

Ken
 
=sum([Fieldname]) + sum([Fieldname2])
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top