Adding the count total of several fields

  • Thread starter Thread starter Tom
  • Start date Start date
T

Tom

I can't seem to get a total of a group of fields. Each
field is a query sum of the count of items in the field
which is based on entry date and exit date (ie. inventory)
 
Post your SQL.


--
HTH,

Steve Clark, Access MVP
FMS, Inc.
Professional Solutions Group
http://www.FMSInc.com
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Is your Access database too slow?
Are you ready to upgrade to SQL Server?
Contact us for optimization and/or upsizing!
http://www.FMSInc.com/consulting
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
 
SELECT COUNT(T1.Field1) + COUNT(T1.Field2) + COUNT(T1.Field3)
FROM Table1 AS T1.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top