C
Chris
My report consists of several questions. For each
question I have an option group with Good, Average, Poor,
Unknown. In one unbound control I have the following:
=Sum(IIf([Category]="1",1,0)). This totals up how many
responded Good. The same calculation is written to total
Average, Poor and Unaware. What I now need is to figure
out what percent of the total who answered the question
responded Good, what percent answered Average, etc. I
did create an unbound control which totals the responses
for the question:
=Sum(IIf([Category]="1" Or [Category]="2" Or [category]
="3" Or [category]="4",1,0))
These percentages combined need to total 100%. I hope
this makes sense, and I would really appreciate any help.
question I have an option group with Good, Average, Poor,
Unknown. In one unbound control I have the following:
=Sum(IIf([Category]="1",1,0)). This totals up how many
responded Good. The same calculation is written to total
Average, Poor and Unaware. What I now need is to figure
out what percent of the total who answered the question
responded Good, what percent answered Average, etc. I
did create an unbound control which totals the responses
for the question:
=Sum(IIf([Category]="1" Or [Category]="2" Or [category]
="3" Or [category]="4",1,0))
These percentages combined need to total 100%. I hope
this makes sense, and I would really appreciate any help.