A
Akrt48
Can anyone tell me how to count the number of times a yes is recorded in a
yes/no field Thanks
yes/no field Thanks
Can anyone tell me how to count the number of times a yes is recorded in a
yes/no field Thanks
fredg said:Can anyone tell me how to count the number of times a yes is recorded in a
yes/no field Thanks
=ABS(Sum([Yes/NoFieldName]))
Akrt48 said:I am having trouble with it, I am trying the DCount as its a report based on
a query. When you say dcount(" do you mean dcount([fieldname or really
dcount("fieldname because it does not want to work either way I get error.
I know I am being obtuse but can't figure it. Thanks for answering the first
time.
Ofer said:Using a query
SELECT Count(TableName.FieldName) AS CountOfFieldName
FROM TableName
GROUP BY TableName.FieldName
HAVING TableName.FieldName=True
Or, using Dcount
=Dcount("FieldName","TableName","FieldName = True")
--
The next line is only relevant to Microsoft''s web-based interface users.
If I answered your question, please mark it as an answer. It''s useful to
know that my answer was helpful
HTH, good luck