Count Number of Yes's in a Yes/No field

G

Guest

I have two Yes/No fields, one for Contract Awarded and one for Contract Lost.
When I run a report I would like a count of each field. That way I know how
many proposals are still outstanding (based on how many have been sent) and
can use that info to calculate award percentages and outstanding percentages,
etc. Thanks for your help in advance.
 
R

Rick Brandt

Suliman said:
I have two Yes/No fields, one for Contract Awarded and one for Contract Lost.
When I run a report I would like a count of each field. That way I know how
many proposals are still outstanding (based on how many have been sent) and
can use that info to calculate award percentages and outstanding percentages,
etc. Thanks for your help in advance.

Since "Yes" values are stored as negative one you can simply sum those fields
and then get the absolute value.

=Abs(Sum([Contract Awarded])
 

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

Top