+ Reply to Thread
Results 1 to 3 of 3

excel conversion/reference table

Hybrid View

  1. #1
    Forum Expert martindwilson's Avatar
    Join Date
    06-23-2007
    Location
    London,England
    MS-Off Ver
    office 97 ,2007
    Posts
    19,320
    you're on the right track, but remember match returns the row from the range specified. so if you use match "microsoft "in range f:f it will return 5
    if you use it in range f3:f5 it will return 3 you can adjust for this, if using a whole range by subtracting rows above your start point
    using on your sheet -2
    =MATCH(A1,F:F,0)-2 thus making it give the result from f3:fXXXXX i.e 3(match can only look at one column or row)
    the index function has to be in format
    array,row number,column number
    the array can be anything contiguous in your case e3:f5 the column numbers will then be 1,2 or 3
    you can put the match formula in
    like this
    array/match formula/column
    so to get result from "microsoft" say in a1
    use in cell b1

    =INDEX(E3:F5,MATCH(A1,F:F,0)-2,1) to return MSFT
    AND in c1
    =INDEX(H3:I5,MATCH(A1,I:I,0)-2,1)
    to return
    555333
    a better explanation is given here
    http://www.mrexcel.com/tip021.shtml
    Last edited by martindwilson; 07-07-2008 at 08:01 PM.

+ 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