;716737']=AND(LEN(A1)=8,ISNUMBER(--(LEFT(A1,7))),CODE(RIGHT(A1,1))>=65,CODE(RIGHT(A1,1))<=90)
the above will not allow lower case at the end, if you want that th
users
to be able to enter both a and A use
=AND(LEN(A1)=8,ISNUMBER(--(LEFT(A1,7))),CODE(UPPER(RIGHT(A1,1)))>=65,CODE(UPPER(RIGHT(A1,1)))<=90)
--
Regards,
Peo Sjoblom
dalymjl said:
dan dungan;716380 Wrote:-
Many thanks for you help. There is still a slight problem as that
validation would permit a letter or other character in the first 7
digits and I only want numbers in the first 7 places.
regards
MJD