adding up in subforms

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

hey, i have a subform, that asks what product you want to choose, and the
quantity of that item, and it also works out the subtotal of each individual
product, but, i also want to add everything up and come get the Overall Total.

i can't seem to do it

could you please explain to me how to acheive this

thanks
 
hey, i have a subform, that asks what product you want to choose, and the
quantity of that item, and it also works out the subtotal of each individual
product, but, i also want to add everything up and come get the Overall Total.

i can't seem to do it

could you please explain to me how to acheive this

thanks

Open the subform in design view. You need to have it as a Continuous
Form (on the default view property), so you can use the subform's
Footer to do the calculation - datasheets don't show the footer.

Select View... Form Footer to make the footer visible; in that footer
put a textbox with a Control Source

=Sum([fieldname])

where fieldname is your subtotal field.

John W. Vinson[MVP]
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top