Validating Checkboxes

  • 10 March 2018
  • 2 replies
  • 0 views

Badge +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

Badge +9

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

213811_pastedImage_2.png213810_pastedImage_1.png

Badge +1

Thank you

Reply