View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Rick Rothstein \(MVP - VB\) Rick Rothstein \(MVP - VB\) is offline
external usenet poster
 
Posts: 2,202
Default How to make the First alphabets in the cell to be blank.

I have the data in Cell A1 as bird456, my results should show as if there
is any alphabets starting in the cell it should return as blank, if not it
should indicate as 1.

bird456 - 0
2566asd - 1


Another possibility...

=IF(AND(CODE(A20)=48,CODE(A20)<=57),1,0)

Rick