+ Reply to Thread
Results 1 to 11 of 11

VLOOKING- another excel document, multi worksheet

  1. #1
    Registered User
    Join Date
    10-21-2013
    Location
    Victoria, bc
    MS-Off Ver
    Excel 2010
    Posts
    11

    VLOOKING- another excel document, multi worksheet

    I am using a VLOOK to search another excel document - my question is can you seach multi workstations within that
    excel file?

  2. #2
    Forum Guru Pete_UK's Avatar
    Join Date
    12-31-2011
    Location
    Warrington, England
    MS-Off Ver
    Office 2019 (still learning)
    Posts
    25,411

    Re: VLOOKING- another excel document, multi worksheet

    Do you mean "workstations", or should that be "worksheets" ?

    Can you tell us the cell containing the lookup value, the names of the sheets that you want to search in, the ranges where you expect the data to occur, the filename and path of the file ? (and any other relevant details). Perhaps you can post the formula that you are using now.

    Pete

  3. #3
    Registered User
    Join Date
    10-21-2013
    Location
    Victoria, bc
    MS-Off Ver
    Excel 2010
    Posts
    11

    Re: VLOOKING- another excel document, multi worksheet

    A have a file called Calander - I am doing a VLOOK to another file called Job Board
    =VLOOKUP(B28,'[JOB BOARD 2013.xlsx]Active'!$B$2:$K$204,3)
    - works great but the problem is that Job Board 2013.xlsx has multi worksheets
    - I need to search each worksheet for a project number (the project could be remove to another worksheet)
    - we have "2013 Completed" and "2012 Completed" worksheet which I need to search

  4. #4
    Registered User
    Join Date
    10-21-2013
    Location
    Victoria, bc
    MS-Off Ver
    Excel 2010
    Posts
    11

    Re: VLOOKING- another excel document, multi worksheet

    =IFERROR(VLOOKUP(B29,'[JOB BOARD 2013.xlsx]Active Projects'!$B$2:$K$204,3), FALSE),IFERROR(VLOOKUP(B29,'[JOB BOARD 2013.xlsx]2013 Completed'!$B$2:$K$204,3, FALSE),IFERROR(VLOOKUP(B29,'[JOB BOARD 2013.xlsx]2012 Completed'!$B$2:$K$204,3, FALSE)

    I thought with would work - what it doesn't

  5. #5
    Forum Guru Pete_UK's Avatar
    Join Date
    12-31-2011
    Location
    Warrington, England
    MS-Off Ver
    Office 2019 (still learning)
    Posts
    25,411

    Re: VLOOKING- another excel document, multi worksheet

    Well that formula implies that you have the other file open at the same time, so we don't have to concern ourselves with the path. Try this formula:

    =IFERROR(VLOOKUP(B28,'[JOB BOARD 2013.xlsx]Active'!$B:$K$,3,0),IFERROR(VLOOKUP(B28,'[JOB BOARD 2013.xlsx]2013 Completed'!$B:$K$,3,0),IFERROR(VLOOKUP(B28,'[JOB BOARD 2013.xlsx]2012 Completed'!$B:$K$,3,0),"not found")))

    Note that I've changed the table references to full column (i.e. $B:$K), as I don't know how big those tables will be, but as you are only getting data from the 3rd column you could change them to $B:$D.

    Hope this helps.

    Pete

  6. #6
    Forum Guru Pete_UK's Avatar
    Join Date
    12-31-2011
    Location
    Warrington, England
    MS-Off Ver
    Office 2019 (still learning)
    Posts
    25,411

    Re: VLOOKING- another excel document, multi worksheet

    [QUOTE=KevinRamsay;3446055I thought with would work - what it doesn't[/QUOTE]

    Note that I've also used the fourth parameter in the VLOOKUP function, set to zero (or FALSE), which means to look for an exact match.

    Also, your sheet name seems to have changed to Active Projects, rather than Active, and you are now using B29 rather than B28 as your lookup value.

    Pete

  7. #7
    Registered User
    Join Date
    10-21-2013
    Location
    Victoria, bc
    MS-Off Ver
    Excel 2010
    Posts
    11

    Re: VLOOKING- another excel document, multi worksheet

    Works great thanks- what do I need to do, the Job Board files is not all ways open

  8. #8
    Registered User
    Join Date
    10-21-2013
    Location
    Victoria, bc
    MS-Off Ver
    Excel 2010
    Posts
    11

    Re: VLOOKING- another excel document, multi worksheet

    is this correct? just insert the path?

    =IFERROR(VLOOKUP(B34,'[H:\11 Op System\Job Board\JOB BOARD 2013.xlsx]Active Projects'!$B$3:$K$500,3,0),IFERROR(VLOOKUP(B34,'[H:\11 Op System\Job Board\JOB BOARD 2013.xlsx]2013 Completed'!$B$3:$K$500,3,0),IFERROR(VLOOKUP(B47,'[H:\11 Op System\Job Board\JOB BOARD 2013.xlsx]2012 Completed'!$B34:$K$500,3,0),"not found")))

  9. #9
    Forum Guru Pete_UK's Avatar
    Join Date
    12-31-2011
    Location
    Warrington, England
    MS-Off Ver
    Office 2019 (still learning)
    Posts
    25,411

    Re: VLOOKING- another excel document, multi worksheet

    If it was working in Post #7 then you don't need to do anything. If you close the Job Board file then Excel will automatically insert the path for you and that formula will expand in the Calendar file.

    Hope this helps.

    Pete

  10. #10
    Registered User
    Join Date
    10-21-2013
    Location
    Victoria, bc
    MS-Off Ver
    Excel 2010
    Posts
    11

    Re: VLOOKING- another excel document, multi worksheet

    Thanks for all of your help. You made my day!!!!!!!

  11. #11
    Forum Guru Pete_UK's Avatar
    Join Date
    12-31-2011
    Location
    Warrington, England
    MS-Off Ver
    Office 2019 (still learning)
    Posts
    25,411

    Re: VLOOKING- another excel document, multi worksheet

    Glad to hear it, Kevin.

    If that takes care of your original question, please select Thread Tools from the menu above your first post and mark this thread as SOLVED.

    Also, since you are relatively new to the forum, I would like to inform you that you can directly thank those who have helped you by clicking on the small "star" icon located in the lower left corner of a post that you have found to be helpful (not just in this thread - for any post that has helped you). This also adds to the reputation of the poster (the small green bars in the poster's profile).

    Pete

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. vlooking shows only the first match. How to keep on looking?
    By Mega_gerry in forum Excel Formulas & Functions
    Replies: 17
    Last Post: 06-10-2013, 01:54 PM
  2. Multi-document link question
    By musik7 in forum Excel General
    Replies: 4
    Last Post: 10-08-2012, 10:11 AM
  3. Excel 2007 : Vlooking up into a vlookup'ed range
    By TT25 in forum Excel General
    Replies: 3
    Last Post: 08-24-2011, 11:55 AM
  4. embed multi-page Word document
    By kgr798386 in forum Excel General
    Replies: 0
    Last Post: 06-28-2006, 06:10 PM
  5. move multi-page Excel worksheet into Word document
    By cedarville in forum Excel General
    Replies: 1
    Last Post: 01-02-2006, 10:10 AM

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