Hi there, I am trying to set an exact number of digits on a staff ID column. Supposedly, when user enters their Staff ID under [Staff ID] column, it should only contain 6 digits. Any deviation from this will result in invalid.
Example:
Staff ID: 12345 (Invalid)
Staff ID: 1234567 (Invalid)
Staff ID: 123456 (valid)
Greatly appreciate if someone could spare the time to provide a suggestion to this..
If you need a number, you set minimum and maximum.
If it’s text, LEN() works.
Now, don’t tell anybody but TEXT() can return your number to text adding a thousand separator, so I guess LEN(TEXT([_THIS]))=7 on your number column would work