Searching a cell for the existence of a number

scottlloyd33

New Member
Joined
Oct 7, 2002
Messages
32
I know I've seen this but cannot find it in the archives. I've got 2 columns of Address info -- either in column L or M. What I'm trying to do is search Column L for a zero => nine. If I find it -- then address is Column L -- otherwise it has to be Column M. I'm trying:

=IF(OR(FIND({"1","2","3","4","5","6","7","8","9","0"},L2))>0,"Column L","Column M")

but to no avail. I know I've got parentheses out of whack or something. Thanks in advance...
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
You need to take the quotes out from around each number and you need to qualify if the Find() result is a number since FIND() finds a position.

Try:

=IF(OR(ISNUMBER(FIND({1,2,3,4,5,6,7,8,9,0},L2))),"Column L","Column M")
 
Upvote 0

Forum statistics

Threads
1,214,975
Messages
6,122,538
Members
449,088
Latest member
RandomExceller01

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