+ Reply to Thread
Results 1 to 5 of 5

Identifying non-pulled data from Vlookups

Hybrid View

  1. #1
    Registered User
    Join Date
    04-09-2007
    Posts
    56

    Identifying non-pulled data from Vlookups

    Good afternoon everyone and thanks in advance for your help!

    I have a master file that lists a variety of data and requires updating from various reference reports. Every month, reference reports detail activity (Revenue) that is processed for most of the existing rows on the master file (previously listed Jobs) in addition to activity for new rows (New Jobs) that are not listed in the master file.

    I know I can execute a Vlookup to look up the activity for the existing job, but I still need to comb through the data to see which jobs need to be added to the master file. Is there a function that will note which row from the reference sheet were not pulled and therefore should be added to the master file?

    Sorry in advance if previously posted.

    Ryan
    Last edited by NBVC; 07-07-2010 at 04:35 PM.

  2. #2
    Forum Expert NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    34,898

    Re: Identifying non-pulled data from Vlookups

    Maybe something like:

    =ISNUMBER(MATCH(A1,'Sheet1'!A:A,0))

    where A1 is the first item in your report file and Sheet1!A:A is column to compare to in Master file. If the item does not appear, it returns FALSE.
    Where there is a will there are many ways.

    If you are happy with the results, please add to the contributor's reputation by clicking the reputation icon (star icon) below left corner

    Please also mark the thread as Solved once it is solved. Check the FAQ's to see how.

  3. #3
    Registered User
    Join Date
    04-09-2007
    Posts
    56

    Re: Identifying non-pulled data from Vlookups

    Thank you, definitely not something I'd of come with on my own. I do seem to be running into an issue since they are all true.

    Here is the formula: =ISNUMBER(MATCH(B206,$B$2:$B$199))

    If I understand correctly, the red is looking up my reference file and the blue is comparing the red to a range that is my entire master file, correct?

  4. #4
    Forum Expert NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    34,898

    Re: Identifying non-pulled data from Vlookups

    Yes, correct... the red is the item you want to find in the blue range.... but you need the last ,0 in the MATCH function to ensure an exact match is found.

    =ISNUMBER(MATCH(B206,$B$2:$B$199,0))

  5. #5
    Registered User
    Join Date
    04-09-2007
    Posts
    56

    Re: Identifying non-pulled data from Vlookups

    Thanks - "0" is key!!!

+ 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