Why are the rules on this formular not working?!?!?

  • 13 February 2018
  • 2 replies
  • 5 views

Badge +10

Hi all,

I have a (responsive) form with a dropdown ("L1", "L2", "L3") and a people picker field. As soon as "L3" is selected it is mandatory to have a value within the people picker field. Unfortunately this is not working for some reason.

This is my form:

213383_pastedImage_1.png

Name of the dropdown: LevelFreigabe

I tried these two rules (set on the people picker field):

213384_pastedImage_2.png

Deutsch: und(istNullOderLeer({Self}), gleich("L3 - GHV / NDA", LevelFreigabe))

English:   and(isNullOrEmpty({Self}), equal("L3 - GHV / NDA", LevelFreigabe))

Deutsch: und(istNullOderLeer({Self}), enthält("L3", LevelFreigabe))

English:   and(isNullOrEmpty {Self}, contains("L3", LevelFreigabe))

Both didn't work. Is there something I have overseen?!?

BTW: I selected the named controls, I didn't write the names only down.

Cheers

mai-kel


2 replies

Userlevel 5
Badge +14

is 'LevelFreigabe' a choice or lookup control?

try to remove extra space after each comma in formula.

try to enclose LevelFreigabe reference with {TextStart}/{TextEnd} tokens.

check developer console whether there are not any errors reported. they may prevent to correctly evaluate a rule.

Badge +10

Removing extra space and using {TextStart} / {TextEnd} did do the magic. Now it is working.

Reply