+ Reply to Thread
Results 1 to 7 of 7

Seeing whether a value exists on another tab

  1. #1
    Registered User
    Join Date
    02-29-2012
    Location
    NJ
    MS-Off Ver
    Excel 2010
    Posts
    14

    Seeing whether a value exists on another tab

    I have a list of employee numbers in a column. (These empl numbers contain numbers AND OR letters) I then have 12 more monthly tabs with employee numbers as well. Each employee number has a monthly earnings value next to it. The main tab has about 4500 employees, however, not all of them exist in all months. For example, John Doe may only exist in the DEC month because that's when he was hired. And Jane Doe may only exist in the JAN-JUN tabs because she retired in June.

    My problem is this:

    In the main tab, I would like to lookup the employee number from a given monthly tab, and IF THE EMPLOYEE EXISTS in a particular monthly tab, input the amount next to the name in the monthly tab, into a box on the main tab. If the name does not exist in a particular monthly tab, I would like to return a "0"

    What I've been using was this:

    Example for looking up an employee number for the month or March

    =LOOKUP(C2,'2011-Mar'!C:C,'2011-Mar'!I:I)

    this works well IF AND ONLY IF every employee is the same on all monthly tabs as well as the main tab.

    If there is an extra employee on a main tab, and that name doesn't exists for march, in this case, it will return the value of the employee just above it, creating a false entry of data where a 0 should exist.

    I hope this explains my problem..I need a drink!
    Last edited by bmiranda; 12-30-2012 at 09:32 PM.

  2. #2
    Registered User
    Join Date
    02-29-2012
    Location
    NJ
    MS-Off Ver
    Excel 2010
    Posts
    14

    Re: Seeing whether a value exists on another tab

    OK, I'm using this:

    =VLOOKUP(C2,'2011-Jan'!A:I,9,0)

    HOWEVER, if the employee does not exist, it returns a #N/A

    I'd like it to return a 0

    little help?

  3. #3
    Forum Guru Norie's Avatar
    Join Date
    02-02-2005
    Location
    Stirling, Scotland
    MS-Off Ver
    Microsoft Office 365
    Posts
    19,644

    Re: Seeing whether a value exists on another tab

    Try this.
    Formula: copy to clipboard
    Please Login or Register  to view this content.
    If posting code please use code tags, see here.

  4. #4
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    53,048

    Re: Seeing whether a value exists on another tab

    try this instead...
    =iferror(VLOOKUP(C2,'2011-Jan'!A:I,9,0),0)
    1. Use code tags for VBA. [code] Your Code [/code] (or use the # button)
    2. If your question is resolved, mark it SOLVED using the thread tools
    3. Click on the star if you think someone helped you

    Regards
    Ford

  5. #5
    Forum Moderator jeffreybrown's Avatar
    Join Date
    02-19-2009
    Location
    Cibolo, TX
    MS-Off Ver
    Office 365
    Posts
    10,327

    Re: Seeing whether a value exists on another tab

    Wrap it in IFERROR

    =IFERROR(VLOOKUP(C2,'2011-Jan'!A:I,9,0),0)
    HTH
    Regards, Jeff

  6. #6
    Registered User
    Join Date
    02-29-2012
    Location
    NJ
    MS-Off Ver
    Excel 2010
    Posts
    14

    Re: Seeing whether a value exists on another tab

    AHHHHH!!!

    Your all as smart as I am stupid!!

    Thanks guys/gals

    Happy New Year!!!!!!

    Now, on to that drink

  7. #7
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    53,048

    Re: Seeing whether a value exists on another tab

    noway, smart is having the sense to ask for help in here, rather than struggling on by yourself
    have a great new year

+ 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