+ Reply to Thread
Results 1 to 4 of 4

LOOKUP & RETURN CELL ADDRESS

  1. #1
    Carolan
    Guest

    LOOKUP & RETURN CELL ADDRESS

    What formula would I use to look up the address of the maximum value in a
    column and return the cell address not the value?

    --
    Carolan

  2. #2
    Aladin Akyurek
    Guest

    Re: LOOKUP & RETURN CELL ADDRESS

    Carolan wrote:
    > What formula would I use to look up the address of the maximum value in a
    > column and return the cell address not the value?
    >


    See the formula system I describe in:

    http://tinyurl.com/dph4d

  3. #3
    Duke Carey
    Guest

    RE: LOOKUP & RETURN CELL ADDRESS

    Assume you have a column header in row one, & that cell is named 'hdr'
    Assume your column of values is named tbl, and starts in row 2

    =ADDRESS(ROW(OFFSET(hdr,MATCH(MAX(tbl),tbl),0)),COLUMN(hdr))



    will give you the address of the FIRST value equal to the max value in the
    list

    "Carolan" wrote:

    > What formula would I use to look up the address of the maximum value in a
    > column and return the cell address not the value?
    >
    > --
    > Carolan


  4. #4
    Harlan Grove
    Guest

    Re: LOOKUP & RETURN CELL ADDRESS

    "Duke Carey" <[email protected]> wrote...
    >Assume you have a column header in row one, & that cell is named 'hdr'
    >Assume your column of values is named tbl, and starts in row 2
    >
    >=ADDRESS(ROW(OFFSET(hdr,MATCH(MAX(tbl),tbl),0)),COLUMN(hdr))

    ....

    MATCH(MAX(tbl),tbl) would only work when tbl is sorted in ascending order,
    in which case ROWS(tbl) would be much simpler. Perhaps you meant
    MATCH(MAX(tbl),tbl,0)?

    More compact to use

    =CELL("Address",INDEX(tbl,MATCH(MAX(tbl),tbl,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