Specific value lock likes this CAPL263*****

I have to lock the specific value, can it be done by entering. 

Solved Solved
0 3 62
1 ACCEPTED SOLUTION

I understand that you want to restrict user input to a string of 12 characters and that the first 7 characters should be: "CAPL263"

In that case you can use the following expression in the 'Valid if" field of your column:

AND(
  "CAPL263" = LEFT([_THIS], 7), 
  12 = LEN([_THIS])
)

______

Text Expressions | AppSheet Help Center 

View solution in original post

3 REPLIES 3

I understand that you want to restrict user input to a string of 12 characters and that the first 7 characters should be: "CAPL263"

In that case you can use the following expression in the 'Valid if" field of your column:

AND(
  "CAPL263" = LEFT([_THIS], 7), 
  12 = LEN([_THIS])
)

______

Text Expressions | AppSheet Help Center 

You should add "read others minds" to the list of your aptitudes ๐Ÿ˜‚

I didn't understand a thing of the OP

๐Ÿ˜„๐Ÿ˜„ Let's see if I got it right  ๐Ÿคฃ ๐Ÿคฃ ๐Ÿคฃ

Top Labels in this Space