Getting percentages of counts

G

Guest

Hi,
For me I like using the following....
=Sum(Abs([d3]="Monday"))
D3 is a field that has 7 possible responses....the days of the week.

BUT when all is said and done.....I get my say....23 people saying Sunday.
However...other days are chosen and there were 60 responses.
So my question is...
How do I get the percentage?
Originally I tried the following but it does not work.
=Sum(Abs([d3]="Monday"))/(=count([d3])
Thanks in advance for any help or guidance.
Sincerely,
Ken
 
G

Guest

Awesome! Thanks so much!

Duane Hookom said:
Try:
=Sum(Abs([d3]="Monday"))/Count([d3])


--
Duane Hookom
MS Access MVP
--

KenRamoska said:
Hi,
For me I like using the following....
=Sum(Abs([d3]="Monday"))
D3 is a field that has 7 possible responses....the days of the week.

BUT when all is said and done.....I get my say....23 people saying Sunday.
However...other days are chosen and there were 60 responses.
So my question is...
How do I get the percentage?
Originally I tried the following but it does not work.
=Sum(Abs([d3]="Monday"))/(=count([d3])
Thanks in advance for any help or guidance.
Sincerely,
Ken
 

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