Mask for text

Hi,
First, sorry for my english.
I can’t see in documentation the way to put a mask in valid_if text field.
I need to record licence plate of many cars. My staff make many mistakes when they record the licence plate from android.
Licence plate in my country are always in format 0000LLL (4 numbers 0-9 and three letters).
how can i validate this format rejecting any format different to this?
Thanks

Solved Solved
0 7 1,724
1 ACCEPTED SOLUTION

Steve
Platinum 4
Platinum 4

Or:

AND(
  (LEN([Plate]) = 7),
  CONTAINS("0123456789", MID([Plate], 1, 1)),
  CONTAINS("0123456789", MID([Plate], 2, 1)),
  CONTAINS("0123456789", MID([Plate], 3, 1)),
  CONTAINS("0123456789", MID([Plate], 4, 1)),
  CONTAINS("ABCDEFGHIJKLMNOPQRSTUVWXYZ", MID([Plate], 5, 1)),
  CONTAINS("ABCDEFGHIJKLMNOPQRSTUVWXYZ", MID([Plate], 6, 1)),
  CONTAINS("ABCDEFGHIJKLMNOPQRSTUVWXYZ", MID([Plate], 7, 1))
)

View solution in original post

7 REPLIES 7

Something I recently learned. Try taking a look at the Text() function and see if it can help.

Steve
Platinum 4
Platinum 4

There’s no trivial way to do what you want. You could try:

[Plate] = CONCATENATE(
  RIGHT(("0000" & NUMBER(LEFT([Plate], 4))), 4),
  RIGHT([Plate], 3)
)

Unfortunately, there’s no way to ensure the last three characters are letters.

Thanks. maybe i can reduce the mistakes with this valid_if.
i made some test with ocrtext from licence plate image but results are very random, many times ocr returns wrong values (add country letter or add license plate holder info)

Maybe that helps.

You should think about using the OCR model instead of OCRTEXT().

You should be able to check if the value is text or not with the FIND expression like FIND(UPPER(“a”),LOWER(“a”))=0. If the value is like #, ?,=, etc. the result is always the same and the result is 1. Same with the numbers. The value is 0 only, if the value is letter. Not very elegant formula, but it should be doable like…

FIND(UPPER(MID([_THIS],5,1)),LOWER(MID([_THIS],5,1)))+
FIND(UPPER(MID([_THIS],6,1)),LOWER(MID([_THIS],6,1)))+
FIND(UPPER(MID([_THIS],7,1)),LOWER(MID([_THIS],7,1)))=0

Steve
Platinum 4
Platinum 4

Or:

AND(
  (LEN([Plate]) = 7),
  CONTAINS("0123456789", MID([Plate], 1, 1)),
  CONTAINS("0123456789", MID([Plate], 2, 1)),
  CONTAINS("0123456789", MID([Plate], 3, 1)),
  CONTAINS("0123456789", MID([Plate], 4, 1)),
  CONTAINS("ABCDEFGHIJKLMNOPQRSTUVWXYZ", MID([Plate], 5, 1)),
  CONTAINS("ABCDEFGHIJKLMNOPQRSTUVWXYZ", MID([Plate], 6, 1)),
  CONTAINS("ABCDEFGHIJKLMNOPQRSTUVWXYZ", MID([Plate], 7, 1))
)


Thanks, it works

Top Labels in this Space