I would like to add some data validation on a cell in the Excel 10. I would like to force the user to enter a string that is 9-char long, with the first 8 char as digits, and the last char an Upper letter.
Thanking u in advance
I would like to add some data validation on a cell in the Excel 10. I would like to force the user to enter a string that is 9-char long, with the first 8 char as digits, and the last char an Upper letter.
Thanking u in advance
this formula could help:
isnumber(left(A1,8)+0)
= with the first 8 char as digitslen(A1)=9
= 9-char longcode(right(A1))>=65,code(right(A1))<=90
= char between "A" and "Z"