I want the sum of a column in my db. Where do I do it, in Query .

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

Guest

I am a new user. I have a column called dues. How do I get a total of this
column in Access. Do I do it in Query????
 
On your form or report where you are displaying the Dues, add an unbound
textbox and put the following expression in the controlsource property:
=Sum([NameOfDuesField])
 
I am a new user. I have a column called dues. How do I get a total of this
column in Access. Do I do it in Query????

That's one way - a Totals query (create a query based on your table
and click the Greek Sigma icon, looks like a sideways W). Or do as PC
Datasheet suggests using a Report or a Form.

John W. Vinson[MVP]
 
Back
Top