Skip to main content
Nintex Community Menu Bar
Solved

Nintex Forms people picker validation

  • June 28, 2017
  • 2 replies
  • 180 views

I'm interested in adding validation for a people picker field in Nintex Forms for SharePoint.

 

Specifically, I am looking to verify that there are at least 2 people in that field.

 

However, the count() function does not seem to work on the field, so when I attempt the validation rule (count(PeoplePicker) < 2), it will always pass, even if I only enter one person.

 

Is there another way to validate the number of people in the people picker field?

Best answer by emha

have a look on this  https://community.nintex.com/message/62289-re-people-picker-field-validation?commentID=62289#comment-62289 

2 replies

Forum|alt.badge.img+14
  • Scholar
  • 4631 replies
  • Answer
  • June 29, 2017

  • Author
  • 3 replies
  • June 29, 2017

Thanks Marian, I was able to make it work with this validation rule based off your link:

If(Array.isArray(PPControl),length(PPControl),If(length(PPControl)>0,1,0))<2