Hey all,
I have a form with 21 combo boxes that you can choose 3 options in (Yes, No, Exempt). I would like to have a box on the form which reports the percentage or "score" of "Yes".
How can I get a count of Yes/Yes+No? I tried using text box with =Sum(IIf([combobox1]="Yes",1,0)) which kept...