Skip to main content
Nintex Community Menu Bar

Validating Checkboxes

  • March 10, 2018
  • 2 replies
  • 14 views

Forum|alt.badge.img+1

I have a checkbox control with 3 options having the following values "Cloud"; "Server"; "Desktop"

I want another control named "Whatkindofentryisthis" to be validated once 'Cloud' is among the options selected.

I have this working when "Cloud" is the only selection

isNullOrEmpty({Self}) &&Whatkindofentryisthis=="Could"

However, I need a rule that will work when cloud is selected along with one or both other options.

Thanks 

2 replies

Forum|alt.badge.img+9

You have use 'Contains' instead of 'equal to' like below.

213811_pastedImage_2.png213810_pastedImage_1.png


Forum|alt.badge.img+1
  • Author
  • March 18, 2018

Thank you