If string contains substring then

joshman108

Active Member
Joined
Jul 6, 2016
Messages
310
I want to know if string "thislp" contains substring "lp".

I know I can use

if(isnumber(search("*lp*",a1)),"true","false")

but is there another way to do this? I just mean I'm wondering if there is a specific formula for such a task other than using wildcards. Thanks!!
 

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN

T. Valko

Well-known Member
Joined
May 9, 2009
Messages
16,623
You normally don't need the wildcards with the SEARCH function:

=ISNUMBER(SEARCH("lp",A1))
 
Upvote 0

Forum statistics

Threads
1,191,578
Messages
5,987,422
Members
440,096
Latest member
yanaungmyint

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
Top