Excel Find Query

rabso

New Member
Joined
Oct 21, 2010
Messages
36
Good morning, I am struggling with the find function in excel. I have a string for example 112ABC325 in cell A1. I need to extract the ABC, now the ABC can be anwhere in the string.

This is what ive tried
IF(FIND(ABC,A1),ABC,"")
But everything comes as blank, ("") even though there is ABC in the string.

Any ideas?

Thank you
Richard Baker
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
Sorry, I have tried that, and also tried referencing to a third party cell that contains the name. This is my running formula, so you can see.

=IF(FIND("Matt",C2,1),$I$1,IF(FIND("Gloss",C2,1),$J$1,""))

The value of C2 is
165 307 Core Gloss

So the formula should return Gloss, but it returns #Value
 
Upvote 0
Try this

Code:
=IF(ISNUMBER(FIND("Matt",C2)),$I$1,IF(ISNUMBER(FIND("Gloss",C2)),$J$1,""))

note that, FIND is a case-sensitive function
 
Upvote 0

Forum statistics

Threads
1,224,598
Messages
6,179,818
Members
452,946
Latest member
JoseDavid

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