+ Reply to Thread
Results 1 to 4 of 4

=IF(ISERROR(MATCH formula

  1. #1
    Registered User
    Join Date
    02-27-2009
    Location
    San Diego
    MS-Off Ver
    Excel 2000
    Posts
    2

    =IF(ISERROR(MATCH formula

    I have two lists of names with corresponding scores. They list of names are similar, but not identical. I'm trying to combine them to one list, showing names and then score set 1 and then score set 2.
    I did some researching and found the =IF(ISERROR(MATCH formula, and applied it as follows:
    =IF(ISERROR(MATCH(D1,$A$1:$A$300,0)),"",B1)

    If column D has a match in Column A, I want it to plug in that persons score (from B) in Column E. If no match, "". In my formula, what do I replace B1 with to make that happen?

    Visual Example:

    colA colB
    Adam 3
    Arron 4
    Bill 6
    Bob 7
    Chris 7
    Corey 9

    colC colD
    Adam 4
    Alex 5
    Arron 3
    Barry 4
    Bill 8
    Bob 9
    Charley 1
    Chris 5
    Corey 6
    Last edited by VBA Noob; 02-27-2009 at 03:03 PM.

  2. #2
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531

    Re: =IF(ISERROR(MATCH formula

    Perhaps:

    E1:
    =IF(ISERROR(MATCH($C1,$A$1:$A$300,0)),"",VLOOKUP($C1,$A$1:$B$300,2,0))

  3. #3
    Registered User
    Join Date
    02-27-2009
    Location
    San Diego
    MS-Off Ver
    Excel 2000
    Posts
    2

    Re: =IF(ISERROR(MATCH formula

    Thanks DonkeyOte!!!
    That worked like a charm. Now I have to go read about VLOOKUP to see how/why that works.
    Thanks again.

    How do I mark this as solved?

  4. #4
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531

    Re: =IF(ISERROR(MATCH formula

    See the How To link in the banner.

+ 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