+ Reply to Thread
Results 1 to 3 of 3

VLookup Elimination Lookups

  1. #1
    Registered User
    Join Date
    11-07-2006
    Posts
    2

    VLookup Overlap Elimination

    Hi, I was just wondering if I could get help on something.

    I have three big long lists. One is 2003, 2004, 2005.

    There is some overlap in the lists, and I want to find 2004's variables that are not in 2003.

    how would I make a vlookup for 2004's numbers, excluding the ones that are mentioned in 2003?

    Can someone just show me a general construct of a formula?

    say there are 400 movie titles in 2004, and I want to look up the movie titles that are new for 2004, so are not in the 2003 list.

    I have no idea how to express "lookup value not in 2003 array"

    thank you sooooooooooooooooo much if anyone can help me!!!
    Last edited by californialove; 11-07-2006 at 08:54 PM.

  2. #2
    Forum Contributor
    Join Date
    03-13-2005
    Posts
    6,195
    Quote Originally Posted by californialove
    Hi, I was just wondering if I could get help on something.

    I have three big long lists. One is 2003, 2004, 2005.

    There is some overlap in the lists, and I want to find 2004's variables that are not in 2003.

    how would I make a vlookup for 2004's numbers, excluding the ones that are mentioned in 2003?

    Can someone just show me a general construct of a formula?

    say there are 400 movie titles in 2004, and I want to look up the movie titles that are new for 2004, so are not in the 2003 list.

    I have no idea how to express "lookup value not in 2003 array"

    thank you sooooooooooooooooo much if anyone can help me!!!
    Are your lists in separate columns, or on separate sheets?

    =VLookup(A1,B:B,1,False)

    will check if the item in A1 appears in column B

    =If(IsError(VLookup(A1,B:B,1,False)),A1,"")

    will list those that are not.

    =VLookup(A1,Sheet2004!A:A,1,False)

    will list the items found in another sheet.

    Are you familiar with Formula Fill? if not, then see http://www.mvps.org/dmcritchie/excel/fillhand.htm

    hth
    ---
    Si fractum non sit, noli id reficere.

  3. #3
    Registered User
    Join Date
    11-07-2006
    Posts
    2
    ^ damm there's an ISERROR function too?

    holy crap, that worked great.

    thank u so much *bows*

+ 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