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

D

Document markups

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????
 
P

PC Datasheet

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])
 
J

John Vinson

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]
 
Top