J
Jim May
The below code in Data Validation Custom (Compliments of Harland Grove):
If you really want nothing other than A-Za-z, try the rather longer & uglier
=AND(MIN(CODE(MID(UPPER(A1),ROW(INDIRECT("1:"&LEN(A1))),
1)))>=65,MAX(CODE(MID(UPPER(A1),ROW(INDIRECT("1:"&LEN(A1))),
1)))<=90)
This WORKS GREAT!!;
Can it be modified to also accomodate space characters as well (code 32)
so that we can monitor the entry (in a single cell) of first, middle and
last names?
TIA,
If you really want nothing other than A-Za-z, try the rather longer & uglier
=AND(MIN(CODE(MID(UPPER(A1),ROW(INDIRECT("1:"&LEN(A1))),
1)))>=65,MAX(CODE(MID(UPPER(A1),ROW(INDIRECT("1:"&LEN(A1))),
1)))<=90)
This WORKS GREAT!!;
Can it be modified to also accomodate space characters as well (code 32)
so that we can monitor the entry (in a single cell) of first, middle and
last names?
TIA,