+ Reply to Thread
Results 1 to 4 of 4

lookup function problem

  1. #1
    Registered User
    Join Date
    03-09-2008
    Posts
    25

    LOOKUP function problem

    i need help with the following formulas,i have tried both and neither work. can anyone see something wrong that i don't? is this not possible? The goal is to type a number in a cell (G4) on a worksheet, and then look it up in a different work sheets (JANUARY THROUGH MARCH) in a different workbook,(NEW DAILY SUMMARY.xls) Once found, import the value of the cell next to were the number was found. Can anyone help please?

    =LOOKUP(G4,'[NEW DAILY SUMMARY.xls]JANUARY'!$I$3:'[NEW DAILY SUMMARY.xls]MARCH'!$I$33,'[NEW DAILY SUMMARY.xls]JANUARY'!$J$3:'[NEW DAILY SUMMARY.xls]MARCH'!$J$33)

    OR

    =LOOKUP(G4,'[NEW DAILY SUMMARY.xls]JANUARY:MARCH'!$I$3:$I$33,'[NEW DAILY SUMMARY.xls]JANUARY:MARCH'!$J$3:$J$33)
    Last edited by PALUCA1982; 03-09-2008 at 05:17 PM.

  2. #2
    Registered User
    Join Date
    03-09-2008
    Posts
    25

    LOOKUP function

    i need help with the following formulas,i have tried both and neither work. can anyone see something wrong that i don't? is this not possible? The goal is to type a number in a cell (G4) on a worksheet, and then look it up in a different work sheets (JANUARY THROUGH MARCH) in a different workbook,(NEW DAILY SUMMARY.xls) Once found, import the value of the cell next to were the number was found. Can anyone help please?

    =LOOKUP(G4,'[NEW DAILY SUMMARY.xls]JANUARY'!$I$3:'[NEW DAILY SUMMARY.xls]MARCH'!$I$33,'[NEW DAILY SUMMARY.xls]JANUARY'!$J$3:'[NEW DAILY SUMMARY.xls]MARCH'!$J$33)

    OR

    =LOOKUP(G4,'[NEW DAILY SUMMARY.xls]JANUARY:MARCH'!$I$3:$I$33,'[NEW DAILY SUMMARY.xls]JANUARY:MARCH'!$J$3:$J$33)
    Last edited by VBA Noob; 03-09-2008 at 05:22 PM.

  3. #3
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2003, 2010
    Posts
    40,678
    Excel won't do that directly; you could use a more complicated formula,

    =if(iserror(JanLookup), if(iserror(FebLookup), if(iserror(Marlookup), "", MarLookup), FebLookup), JanLookup)

    ... or use the VBA solution at http://www.ozgrid.com/VBA/VlookupAllSheets.htm
    Last edited by shg; 03-10-2008 at 06:52 PM.

  4. #4
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2003, 2010
    Posts
    40,678
    Threads merged.

    PALUCA, please don't post the same thread in two forums.

+ 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