+ Reply to Thread
Results 1 to 3 of 3

IF with FIND and range Help

Hybrid View

  1. #1
    Registered User
    Join Date
    01-31-2013
    Location
    Los Angeles, CA
    MS-Off Ver
    Excel for Mac 2011
    Posts
    2

    IF with FIND and range Help

    Hi ladies and gents. This is my first post and I'm hoping one of you very knowledgeable people can help me out because this is beyond my understanding.

    I am trying to lookup up if a cell contains a text string that is within a separate range that is named "Criteria". If true, then I would like to place that text value in the cell that contains the forumla (in this case column G), if false, it can say false or be blank.

    I found and tried the following forumla but it only found the text in cell G4 for some reason (even though it can be found in various cells): IF(ISNUMBER(FIND(Criteria,B4)),Criteria)

    Here is a screenshot of my worksheet, the column in red is the one I can't get to work properly

    Screen Shot 2013-01-31 at 5.55.49 PM.png

    Any advice?

    Thanks for your help!

  2. #2
    Forum Guru benishiryo's Avatar
    Join Date
    03-25-2011
    Location
    Singapore
    MS-Off Ver
    Excel 2013
    Posts
    5,156

    Re: IF with FIND and range Help

    hi titantrojan, welcome to the forum. uploading a sample Excel file in the thread will enable us to help you better. to upload, press "Go Advanced" beside the "Post Quick Reply" button & click on the paperclip icon
    ideally, it should contain your desired results

    but you can try this:
    =LOOKUP(2,1/(FIND(Criteria,B4)),Criteria)
    to handle errors, try:
    =IF(ISNA(LOOKUP(2,1/(FIND(Criteria,B4)),Criteria)),"",LOOKUP(2,1/(FIND(Criteria,B4)),Criteria))
    or not sure if Mac2011 has IFERROR:
    =IFERROR(LOOKUP(2,1/(FIND(Criteria,B4)),Criteria),"")

    ps: do note that FIND is case-sensitive. you can use SEARCH if you don't want it to be so. same fields to fill.

    Thanks, if you have clicked on the * and added our rep.

    If you're satisfied with the answer, click Thread Tools above your first post, select "Mark your thread as Solved".

    "Contentment is not the fulfillment of what you want, but the realization of what you already have."


    Tips & Tutorials I Compiled | How to Get Quick & Good Answers

  3. #3
    Registered User
    Join Date
    01-31-2013
    Location
    Los Angeles, CA
    MS-Off Ver
    Excel for Mac 2011
    Posts
    2

    Thumbs up Re: IF with FIND and range Help

    benishiryo, you are awesome!!! I don't understand how the LOOKUP part of the formula functions (I'll do some research), but it works.

    Thank you so much!

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1