I am trying to find out the totals of two Fields [EDIT] and [SAVE] the only ecpression I could write was sum([edit]and[save]) any help in writing the exprestion in query view or SQL would be apricated.
Hi
Do you mean total as in "sum all records for field save and field edit" or "add field edit to field save"?
If it is the first option, the Access query builder produced this for me:
[tt]SELECT Statistics.Month, Sum(Statistics.SentTo) AS ST, Sum(Statistics.NotSentTo) AS NST, Sum(Statistics.NotHeld) AS NH, Sum(Statistics.ReceivedFrom) AS RF, Sum(Statistics.NotRecFrom) AS NRF
FROM Statistics
GROUP BY Statistics.Month;[tt]
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.