Hello all, and thanks for taking the time to help me out here.
Basically, I am trying to set up a validation rule that correlates with an input mask where the user is required to enter select alpha characters followed by a series of numeric characters.
The input mask Auto-enters API, requires an alpha value in upper case, and up to 8 numeric values., as seen here:
"API"<L9999 9999
Now, the part I am having trouble with is setting up the validation rule. I need for it to check and make sure that either "M" or "A" have been entered following the auto entered "API". The validation rule (as seen below) will do that, but no matter how much I mess with it I can't seem to get it to allow between 1 and 8 numeric values to be entered following the "M" or "A". Values like APIA1234 (or APIM1234) should be accepted just as APIA12345678 (or API12345678) would.
Here is the validation rule so far:
"API" & "" & "M" Or "A"
Again, thanks guys!
Basically, I am trying to set up a validation rule that correlates with an input mask where the user is required to enter select alpha characters followed by a series of numeric characters.
The input mask Auto-enters API, requires an alpha value in upper case, and up to 8 numeric values., as seen here:
"API"<L9999 9999
Now, the part I am having trouble with is setting up the validation rule. I need for it to check and make sure that either "M" or "A" have been entered following the auto entered "API". The validation rule (as seen below) will do that, but no matter how much I mess with it I can't seem to get it to allow between 1 and 8 numeric values to be entered following the "M" or "A". Values like APIA1234 (or APIM1234) should be accepted just as APIA12345678 (or API12345678) would.
Here is the validation rule so far:
"API" & "" & "M" Or "A"
Again, thanks guys!
Comment