+ Reply to Thread
Results 1 to 4 of 4

Check data on colum A and find match on colum b

  1. #1
    Chris(new user)
    Guest

    Check data on colum A and find match on colum b

    I need excel to check two lists of id codes and show if a match exists my
    spreadsheet looks similar to this...
    Colum A Colum B
    axc123564 jku7784554
    wes879566 abc123456
    abc123456 uujk44521154

    I want excel to check if items on colum b appear on colum a and inform me if
    a match is found in colum c

    This is what I want it to look like

    axc123564 jku7784554 No Match
    wes879566 abc123456 Match
    abc123456 uujk44521154 No match

    My sheet contains over 2000 id's
    Please help.




  2. #2
    JE McGimpsey
    Guest

    Re: Check data on colum A and find match on colum b

    one way :

    C1: =IF(COUNTIF(A:A,B1),"Match","No Match")

    In article <[email protected]>,
    Chris(new user) <[email protected]> wrote:

    > I need excel to check two lists of id codes and show if a match exists my
    > spreadsheet looks similar to this...
    > Colum A Colum B
    > axc123564 jku7784554
    > wes879566 abc123456
    > abc123456 uujk44521154
    >
    > I want excel to check if items on colum b appear on colum a and inform me if
    > a match is found in colum c
    >
    > This is what I want it to look like
    >
    > axc123564 jku7784554 No Match
    > wes879566 abc123456 Match
    > abc123456 uujk44521154 No match
    >
    > My sheet contains over 2000 id's
    > Please help.


  3. #3
    Arvi Laanemets
    Guest

    Re: Check data on colum A and find match on colum b

    Hi

    C2=IF(ISERRROR(VLOOKUP(B2,$A$2:$A$2500,1,0)),"No Match","Match")
    or
    C2=IF(ISERROR(MATCH(B2,$A$2:$A$2500,0)),"No Match","Match")
    and copy down


    Arvi Laanemets


    "Chris (new user)" <[email protected]> wrote in message
    news:[email protected]...
    > I need excel to check two lists of id codes and show if a match exists my
    > spreadsheet looks similar to this...
    > Colum A Colum B
    > axc123564 jku7784554
    > wes879566 abc123456
    > abc123456 uujk44521154
    >
    > I want excel to check if items on colum b appear on colum a and inform me

    if
    > a match is found in colum c
    >
    > This is what I want it to look like
    >
    > axc123564 jku7784554 No Match
    > wes879566 abc123456 Match
    > abc123456 uujk44521154 No match
    >
    > My sheet contains over 2000 id's
    > Please help.
    >
    >
    >




  4. #4
    Ragdyer
    Guest

    Re: Check data on colum A and find match on colum b

    You posted this question maybe 6 or 7 times yesterday!

    You were given suggestions of formulas to try.

    Are you not able to understand the use of the suggestions, OR, are you not
    able to read the replies themselves in your newsreader?

    Here's a repeat of my suggestion:

    Try this in C1, and copy down:

    =IF(ISNA(MATCH(B1,$A$1:$A$100,0)),"No Match","Match Found")

    Here's a link to *ONE* of the threads:

    http://tinyurl.com/6ullp

    --
    HTH,

    RD

    ---------------------------------------------------------------------------
    Please keep all correspondence within the NewsGroup, so all may benefit !
    ---------------------------------------------------------------------------

    "Chris (new user)" <[email protected]> wrote in message
    news:[email protected]...
    > I need excel to check two lists of id codes and show if a match exists my
    > spreadsheet looks similar to this...
    > Colum A Colum B
    > axc123564 jku7784554
    > wes879566 abc123456
    > abc123456 uujk44521154
    >
    > I want excel to check if items on colum b appear on colum a and inform me

    if
    > a match is found in colum c
    >
    > This is what I want it to look like
    >
    > axc123564 jku7784554 No Match
    > wes879566 abc123456 Match
    > abc123456 uujk44521154 No match
    >
    > My sheet contains over 2000 id's
    > Please help.
    >
    >
    >



+ 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