Using FIND formula with 3 FIND?

marreco

Well-known Member
Joined
Jan 1, 2011
Messages
609
Office Version
  1. 2010
Platform
  1. Windows
hI.
I can use this separate function, you could use them together?

Code:
=IF(ISERROR(FIND($S$1,J9));$R$1;IF(ISERROR(FIND($S$2,J9));$R$2;IF(ISERROR(FIND($S$3,J9));$R$3;"Not Find)))

Thank you!!!
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
Try if this work:
=INDEX($R$1:$R$3,MATCH("*"&J9&"*",$S$1:$S$3,0))
or if there is no match at all
=IFERROR(INDEX($R$1:$R$3,MATCH("*"&J9&"*",$S$1:$S$3,0)),"")
(07/10/13 Excel version)
 
Upvote 0
hI.
I can use this separate function, you could use them together?

Code:
=IF(ISERROR(FIND($S$1,J9));$R$1;IF(ISERROR(FIND($S$2,J9));$R$2;IF(ISERROR(FIND($S$3,J9));$R$3;"Not Find)))

Thank you!!!

FIND is case-sensitive. If this is not what you want, switch to SEARCH...

=LOOKUP(9.99999999999999E+307,FIND($S$1:$S$3,J9),$R$1:$R$3)

For a Index/Match approach, see Robert's reply.
 
Upvote 0
Hi.

Both form of response helpful, thank you very much!
 
Upvote 0

Forum statistics

Threads
1,215,063
Messages
6,122,935
Members
449,094
Latest member
teemeren

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