+ Reply to Thread
Results 1 to 2 of 2

Lookup value in other sheet - return coresponding value

  1. #1
    Registered User
    Join Date
    09-03-2007
    Location
    Sydney, Australia
    Posts
    1

    Lookup value in other sheet - return coresponding value

    Hi,
    I need to :
    - Take a value on the same row as the formula
    - Look-up that value on another workbook / worksheet
    - Return a value in on the same row as the value in the other sheet

    Can this be done ?

    Regards
    Michael Green

  2. #2
    Forum Expert daddylonglegs's Avatar
    Join Date
    01-14-2006
    Location
    England
    MS-Off Ver
    2016
    Posts
    14,675
    Sounds like VLOOKUP or INDEX/MATCH

    If you want to lookup C2 in sheet2 column A and return the corresponding value from column B

    =VLOOKUP(C2,sheet2!A1:B100,2,0)

    The 2 indicates the column number of the range from which to return the value, see Excel help

    or where the value you want to return is from a column to the left, i.e. you want to lookup the value in column B and return a value from A

    =INDEX(sheet2!A1:A100,MATCH(C2,sheet2!B1:B100,0))

+ 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