You're welcome. The second one is a little tricky. This is called Conditionally Required since a checkbox Boolean FALSE is a valid value. So, you can create a hidden field somewhere in the form. I usually create a section and hide it if the authenticated user isn't me. When any of the checkboxes is checked, set the value of the hidden field. I'd use a counter for this. Make a text field a whole number and name it ChkCounter. Give it a default value of 0. On the checkbox field, when field changes If Checkbox1 = TRUE set ChkCounter = ChkCounter +1. Rule 2 If Checkbox1 changes and is false() set ChkCounter = ChkCounter -1. Now, create a validation rule on each checkbox control. If Checkbox1 = FALSE and ChkCounter
Sean