Skip to main content
Nintex Community Menu Bar

Requiring a Yes/No Checkbox when specific selection is made from dropdown

  • June 20, 2019
  • 3 replies
  • 19 views

Forum|alt.badge.img+1

Within my Nintex form, I have a dropdown. If someone selects "Closed - Wrong Number" I want them to be required select at least 1 of 3 Yes/No boxes.

 

My current condition:

and(equals(1stAttempt,"Closed - Wrong Number"),(PrimaryPhoneInvalid !="Yes"))

requires the field, but selecting the box doesn't satisfy the condition so the form won't close. Due to this, I haven't attempted to add the other two boxes.

2687iE6A34624D6E34F3D.png

3 replies

Forum|alt.badge.img+14
  • Scholar
  • June 24, 2019

yes.no checkboxes evaluate directly to true/false boolean value, you need not to compare them to anything.

so you your formula should look like 

and(equals(1stAttempt,"Closed - Wrong Number"),not(PrimaryPhoneInvalid))

Forum|alt.badge.img+1
  • Author
  • June 24, 2019

Thank you, that worked.

 

Any idea how to allow 1 of 3 of checkboxes to be checked?

 

and(equals(1stAttempt,"Closed - Wrong Number"),not(PrimaryPhoneInvalid OR PHONE2INVALID OR PHONE3INVALID))

I know what I have is not valid, used only for example.

 


Forum|alt.badge.img+14
  • Scholar
  • June 25, 2019

you almost did it :)

 

try

and(equals(1stAttempt,"Closed - Wrong Number"),not(or(or(PrimaryPhoneInvalid,PHONE2INVALID),PHONE3INVALID)))