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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

calculations in queries

Status
Not open for further replies.

kpryan

Technical User
Aug 24, 2005
282
US
Hi all,
I have a continous form in which I want to sum a number column.
I want to do this in the query. How is this done please?

Many thanks

ken

 
The SQL of the query would be something like...
Code:
SELECT Sum([TheRecordsouceOfYourForm].[YourField]) AS SumOfYourField
FROM TheRecordsouceOfYourForm;
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top