Only way to do that is OR conditions. So you'll need to make more OR rows, add the 2 AND conditions that I've already added for you, then add a 3rd AND condition to each OR row checking your fields. This should result in the following.
( PLAN_ID_CONDITION -AND- PLAN_ACTION_CONDITION -AND- FIELD_1_CONDITION )
OR
( PLAN_ID_CONDITION -AND- PLAN_ACTION_CONDITION -AND- FIELD_2_CONDITION )
OR
( PLAN_ID_CONDITION -AND- PLAN_ACTION_CONDITION -AND- FIELD_3_CONDITION )
This can be simplified to the following though.
( PLAN_ID_CONDITION -AND- PLAN_ACTION_CONDITION -AND- FIELDS_CONDITION )
It however requires using a Code condition and utilizing PHP. The below should work.
Field: Custom > Code
Custom Code:
Code:
if ( ! $user->get( 'field_1_name_here', '' ) ) {
return 1;
}
if ( ! $user->get( 'field_2_name_here', '' ) ) {
return 1;
}
if ( ! $user->get( 'field_3_name_here', '' ) ) {
return 1;
}
return 0;
Operator: Equal To
Value: 1
Add as many field checks there as needed. Both should accomplish what you're wanting so feel free to use whichever method feels more comfortable to you.