IF cell does not start with a number, then..

elbarauljr

New Member
Joined
May 4, 2020
Messages
19
Office Version
  1. 365
  2. 2007
Platform
  1. Windows
Hi All,

Do you know a formula that can return the word "include" if the cell in column A does not start with a number ?

Here is an example and result
A1 345C5T64 B1
A2 C8744343 B2 include
A3 B3 include
A4 Non CI B4 include
A5 AFCS3 B5 include
A6 74 B6

Thanks in advance.
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
Please try the following formula on Cell B1 and Copy down as needed:
Excel Formula:
=IF(ISNUMBER(IFERROR(VALUE(LEFT(A1,1)),""))=FALSE,"Include","")
 
Upvote 0
Another option. (you didn't say what to return if the cell does start with a number)
Excel Formula:
=IF(ISERROR(LEFT(A2)+0),"Include","?")
 
Upvote 0
Solution

Forum statistics

Threads
1,215,659
Messages
6,126,071
Members
449,286
Latest member
Lantern

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top