Excel Function Help

J

jrdng01

Hi - I need help with search/find specific letter in the column.
ex: Corp A FLR 12345
Corp B Floating 54r53
Corp d 12345 FLT
Co. ZZZ 45 FL

I want to search for FLR and or FLT and or FL and or Floating etc an
return to me with what ever it find that falls in the criterials tha
has set. Can someone shed some light?

Thank
 
C

Claus Busch

Hi,

Am Wed, 13 Feb 2013 16:26:03 +0000 schrieb jrdng01:
Hi - I need help with search/find specific letter in the column.
ex: Corp A FLR 12345
Corp B Floating 54r53
Corp d 12345 FLT
Co. ZZZ 45 FL

I want to search for FLR and or FLT and or FL and or Floating etc and
return to me with what ever it find that falls in the criterials that
has set. Can someone shed some light?

try:
=IF(ISNUMBER(FIND("FL",A1)),MID(A1,FIND("FL",A1),3),IF(ISNUMBER(FIND("Fl",A1)),MID(A1,FIND("Fl",A1),9),""))
If you only want to know if one of the strings is in the cell:
=COUNT(SEARCH("FL",A1))
That will give you a 1 if the string is in the cell


Regards
Claus Busch
 
J

jrdng01

Claus said:
Hi,

Am Wed, 13 Feb 2013 16:26:03 +0000 schrieb jrdng01:
-

try:
=IF(ISNUMBER(FIND("FL",A1)),MID(A1,FIND("FL",A1),3),IF(ISNUMBER(FIND("Fl",A1)),MID(A1,FIND("Fl",A1),9),""))
If you only want to know if one of the strings is in the cell:
=COUNT(SEARCH("FL",A1))
That will give you a 1 if the string is in the cell


Regards
Claus Busch
===================================
Thank you Claus.
I will use the second function, the first function returns to me an
characters that has "FL" ie: NFL this is not what I need! Thanks agai
:
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top