Adding the count total of several fields

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)
 
C

Chris2

SELECT COUNT(T1.Field1) + COUNT(T1.Field2) + COUNT(T1.Field3)
FROM Table1 AS T1.
 
Top