mentairia Posted March 30, 2005 Posted March 30, 2005 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.
Ender Posted March 30, 2005 Posted March 30, 2005 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)
mentairia Posted April 5, 2005 Author Posted April 5, 2005 They are all in one field and pattencount only returns value 1 anyother Ideas?
Recommended Posts
This topic is 7173 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now