Wednesday, 11 October 2017

SharePoint InfoPath Form: How to ensure that a text field contains at least 100 characters?


Specify a validation rule for the field as below:


Here 'JD' is the field name.

Condition is set to "does not match the pattern"

Pattern: .{100,}

A . would allow the user to type in any character as long as the length is at least 100.

No comments:

Post a Comment