My database collects a lot of Yes/No questions. The query is date specific,
and it asks to find how many ESA tune-up were performed and of those a yes/no
field asks if the customer invested in an ESA renewal. The query shows this
with no problem. The problem I have is how can I show in this query how many
records in the database were queried to get this information.
> My database collects a lot of Yes/No questions. The query is date specific,
> and it asks to find how many ESA tune-up were performed and of those a yes/no
> field asks if the customer invested in an ESA renewal. The query shows this
> with no problem. The problem I have is how can I show in this query how many
> records in the database were queried to get this information.
You can take advantage of the fact that a check box has a value of
either -1 or 0.
To count Yes's:
CountOfYes:Abs(Sum([CheckBoxName]))
To count No's:
CountOfNo:Sum([CheckBoxName]+1)

Signature
Fred
Please only reply to this newsgroup.
I do not reply to personal email.