Nintex for SharePoint Forum
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results forÂ
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:
Name of the dropdown: LevelFreigabe
I tried these two rules (set on the people picker field):
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
Solved! Go to Solution.
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.
Removing extra space and using {TextStart} / {TextEnd} did do the magic. Now it is working.