View Single Post
  #3   Report Post  
Chip Pearson
 
Posts: n/a
Default Check for Alpha characters

Try the following formula:

=ISNUMBER(--LEFT(A1,3))

It will return TRUE if the left 3 characters of A1 are numeric,
FALSE otherwise.


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com



"TimE" wrote
in message
...

I would like to check if the first three characters are alpha,
if so,
remove them. The alpha characters will be any combination.

EX.

BEFORE - ABC123
RESULT - 123

The alpha will not be the same or I would use:
=IF(LEFT(A1,3)="ABC",RIGHT(A1,LEN(A1)-3))

Thanks in advance for ANY assistance.


--
TimE
------------------------------------------------------------------------
TimE's Profile:
http://www.excelforum.com/member.php...fo&userid=2139
View this thread:
http://www.excelforum.com/showthread...hreadid=483637