+ Reply to Thread
Results 1 to 3 of 3

Using Index() & Match() functions

  1. #1
    Registered User
    Join Date
    10-07-2006
    Posts
    1

    Thumbs up Using Index() & Match() functions

    I am trying to populate columns on sheet1 from a second worksheet(sheet2) using the INDEX() and MATCH() combination in a formula. The source is from a listbox populated from a named range on another sheet(sheet3).

    For example:

    A2 would be the list box selected and would say "Monday" I want B2 to populate from a second sheet by finding the reference against Monday on that sheet.

    So far I have tried the following with out success

    =index($a$2:$a$8(Match(sheet2!$b$2:$b$8,0),1)

    Sheet2 would typically be:

    A2 B2
    Monday One
    Tuesday Two
    Wednesday Three
    Thursday Four

    and so on.

    Any ideas where I'm going wrong out there?????

  2. #2
    Forum Contributor
    Join Date
    03-14-2006
    Location
    Pakistan
    Posts
    1,791

    Lightbulb

    Quote Originally Posted by Walter349
    I am trying to populate columns on sheet1 from a second worksheet(sheet2) using the INDEX() and MATCH() combination in a formula. The source is from a listbox populated from a named range on another sheet(sheet3).

    For example:

    A2 would be the list box selected and would say "Monday" I want B2 to populate from a second sheet by finding the reference against Monday on that sheet.

    So far I have tried the following with out success

    =index($a$2:$a$8(Match(sheet2!$b$2:$b$8,0),1)

    Sheet2 would typically be:

    A2 B2
    Monday One
    Tuesday Two
    Wednesday Three
    Thursday Four

    and so on.

    Any ideas where I'm going wrong out there?????
    suppose Moday in entered in C2 and list of data is in A2:B8
    try this

    =INDEX($A$2:$B$8,MATCH(C2,$A$2:$A$8,0),2)

    you should adjust references according to your data (I supposed a single sheet in above formula)

    Regards.

  3. #3
    Forum Contributor
    Join Date
    03-13-2005
    Posts
    6,195
    Quote Originally Posted by Walter349
    I am trying to populate columns on sheet1 from a second worksheet(sheet2) using the INDEX() and MATCH() combination in a formula. The source is from a listbox populated from a named range on another sheet(sheet3).

    For example:

    A2 would be the list box selected and would say "Monday" I want B2 to populate from a second sheet by finding the reference against Monday on that sheet.

    So far I have tried the following with out success

    =index($a$2:$a$8(Match(sheet2!$b$2:$b$8,0),1)

    Sheet2 would typically be:

    A2 B2
    Monday One
    Tuesday Two
    Wednesday Three
    Thursday Four

    and so on.

    Any ideas where I'm going wrong out there?????
    As you are looking up only one value, another choice is to use the Offset with the Match, where

    =Offset(Sheet2!$B$2,Match($A$2,Sheet2!$B$2:$B$8,0)-1,0)

    should provide your answer, as would

    =VLookup(A2,Sheet2!A2:B8,2,false)

    --

    for
    =index($a$2:$a$8(Match(sheet2!$b$2:$b$8,0),1)
    try
    =index(Sheet2!$a$2:$B$8,(Match(A2,sheet2!$A$2:$A$8,0)),2)

    ---
    Last edited by Bryan Hessey; 10-08-2006 at 09:33 AM.

+ 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