I have a single line of text field in a Nintex Form for an Employee Number
I would like to add a validation to this field for the following:
1. Must start with a 0 or a 1
2. Must be 6 digits
Any help would be appreciated
Solved! Go to Solution.
Hi,
I suggest using a regular expression in the control validation settings.
The expression would look like:
^[0-1]\d{5}$
Thank you so much.. that worked perfectly!