Aug 8, 2007 #1 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
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
Aug 8, 2007 #2 Spenney Technical User Apr 11, 2003 93 GB The SQL of the query would be something like... Code: SELECT Sum([TheRecordsouceOfYourForm].[YourField]) AS SumOfYourField FROM TheRecordsouceOfYourForm; Upvote 0 Downvote
The SQL of the query would be something like... Code: SELECT Sum([TheRecordsouceOfYourForm].[YourField]) AS SumOfYourField FROM TheRecordsouceOfYourForm;