If Checkbox01 is checked and Checkbox02 is checked Then

I have a risk determination table I’m trying to put into custom menu using UD02. I want the corresponding epiShape to update to warning if their respective checkboxes are checked. So if chkBoxLikely.checked = true and chkBoxCritical.checked = true then shapeCL.Status = StatusTypes.Warning.
image

Now, I know how to do this using an If/then/else statement so I have 9 lines covering all scenarios. My question is what event handler would I use such that when the second checkbox is selected, the shape updates? I have tested it under a group_click event but that requires clicking the group every time.

Am I going to need to create all cases under all 6 click events?

instead of 6 checkboxes (two sets of 3), did you consider using two Radio Set type fields? Then there are only two fields on the screen to program events around.

I didn’t think about that! I would need to do some adjusting to get each under the same group. I’m not familiar with controlling radio buttons though. I’m only just getting my feet wet with some of this.