B
bactfarmer
I need a formula that tells you if the first character in a string is
a number or a letter.
Thanks
Very Cunfused
a number or a letter.
Thanks
Very Cunfused
bactfarmer said:I need a formula that tells you if the first character in a string is
a number or a letter.
....Sunrays17 said:i am looking forward to know is there any formula to know if a value
is alphanumeric too, as well as its a number or a letter...
Sunrays17 said:Hi there...
i am looking forward to know is there any formula to know if a value
is alphanumeric too, as well as its a number or a letter...
Take care...
Sunrays17
Could you give some examples of what you mean?
- Show quoted text -
...
Adapt some of the other formulas. Alternatively,
=COUNT(SEARCH(LEFT(s,1),"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"))
returns TRUE if the first char in s is alphanumeric, FALSE otherwise.
This is easily adapted to non-English languages with more/other
letters.
Could you give some examples of what you mean?
=IF(A1="","",IF(AND(CODE(LEFT(A1,1))>=48,CODE(LEFT(A1,1))<=57),"Number",IF(
text -
- Show quoted text -