ADDING Amount to get ONE TOTAL~!

V

Vince

Hello,

After I create a query to select records based on date
and location, how to I ADD the [Amount] together to get
ONE total?

Please assist!!!

Vince
 
K

Ken Snell

Make the query that you created into a Totals query (click the Greek letter
sigma [looks like a crooked E] in the toolbar) and select the Sum option
under the field Amount.
 
V

VINCE

Hi Doesn't work....

THX but I kinda tried the SUM approach...

I just want ONE total it's still showing separte records
that I queried!

Please assist

THX.
 
V

Vince

SORRY I tried again with less fields and it WORKED....

IS there a max amount of fields I can choose?

Please advise

Vince
-----Original Message-----
Make the query that you created into a Totals query (click the Greek letter
sigma [looks like a crooked E] in the toolbar) and select the Sum option
under the field Amount.

--
Ken Snell
<MS ACCESS MVP>

Hello,

After I create a query to select records based on date
and location, how to I ADD the [Amount] together to get
ONE total?

Please assist!!!

Vince


.
 
R

Rick Brandt

VINCE said:
Hi Doesn't work....

THX but I kinda tried the SUM approach...

I just want ONE total it's still showing separte records
that I queried!

Then your query should have exactly one field in it.

GrandTotal: Sum(YourField)
 
Top