March 30, 200520 yr I have 12 check boxes one for each month I need a way to get a count on the number of boxes that have been checked.
March 30, 200520 yr If they are separate fields, try: not isempty(checkbox1) + not isempty(checkbox2) + not isempty(checkbox3) + ... If they are 12 boxes in one field, try: patterncount( checkbox, "" ) + not isempty(checkbox)
April 5, 200520 yr Author They are all in one field and pattencount only returns value 1 anyother Ideas?
Create an account or sign in to comment