+ Reply to Thread
Results 1 to 6 of 6

How to check if entire column has an partial match from a cell?

  1. #1
    Registered User
    Join Date
    01-18-2011
    Location
    Finland
    MS-Off Ver
    Excel 2007
    Posts
    7

    Question How to check if entire column has an partial match from a cell?

    Hi,

    I'm trying to do a "course checker", to find if column D has partial match from a cell at column A, and then give TRUE/FALSE answer next to it on column B.

    Column A is a list of courses I have to attend and column D is courses I have done but the fact that they include some extra info makes it harder, at least for me.

    I've tried =IF(ISERROR(FIND(A2;D:D;0))=TRUE;FALSE;TRUE) and many other ways with no success.
    Attached Images Attached Images
    Last edited by goljat; 05-07-2013 at 11:14 AM.

  2. #2
    Forum Expert martindwilson's Avatar
    Join Date
    06-23-2007
    Location
    London,England
    MS-Off Ver
    office 97 ,2007
    Posts
    19,320

    Re: How to check if entire column has an partial match from a cell?

    try
    =ISNUMBER(MATCH("*"&A2&"*",$D$1:$D$50,0))
    or you may need
    =ISNUMBER(MATCH("*"&A2&"*";$D$1:$D$50;0)) to use ; as seperator
    "Unless otherwise stated all my comments are directed at OP"

    Mojito connoisseur and now happily retired
    where does code go ?
    look here
    how to insert code

    how to enter array formula

    why use -- in sumproduct
    recommended reading
    wiki Mojito

    how to say no convincingly

    most important thing you need
    Martin Wilson: SPV
    and RSMBC

  3. #3
    Registered User
    Join Date
    01-18-2011
    Location
    Finland
    MS-Off Ver
    Excel 2007
    Posts
    7

    Re: How to check if entire column has an partial match from a cell?

    Thank you for quick and helpful replay! It worked

  4. #4
    Registered User
    Join Date
    01-18-2011
    Location
    Finland
    MS-Off Ver
    Excel 2007
    Posts
    7

    Re: How to check if entire column has an partial match from a cell?

    I tried to find out what "*"&A2&"*" actually does, could someone point me where I can read more about?

  5. #5
    Forum Expert martindwilson's Avatar
    Join Date
    06-23-2007
    Location
    London,England
    MS-Off Ver
    office 97 ,2007
    Posts
    19,320

    Re: How to check if entire column has an partial match from a cell?

    * is used as a wild card so *cat* will match say cat, cattle muscat

  6. #6
    Registered User
    Join Date
    01-18-2011
    Location
    Finland
    MS-Off Ver
    Excel 2007
    Posts
    7

    Re: How to check if entire column has an partial match from a cell?

    Thank you!

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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