+ Reply to Thread
Results 1 to 5 of 5

Nth cell of a column

  1. #1
    Registered User
    Join Date
    03-01-2010
    Location
    India
    MS-Off Ver
    Excel 2007
    Posts
    26

    Nth cell of a column

    I need to findout the nth cell of column B where the 'n' stands for the address of the last column of E.

    So my requirement is to findout the Value in column B corresponding to the last row of Column E. I found the last row number of column E using the below formula..


    =ROW(OFFSET(E1,COUNTA(E:E)-1,0))

    Dont know how to use the result of this to find the value in column B of this row. Can someone help ?

  2. #2
    Forum Expert martindwilson's Avatar
    Join Date
    06-23-2007
    Location
    London,England
    MS-Off Ver
    office 97 ,2007
    Posts
    19,320

    Re: Nth cell of a column

    assuming no blanks in col E
    =INDEX(B1:B100,MATCH(TRUE,INDEX(E1:E100="",0),0))
    "Unless otherwise stated all my comments are directed at OP"

    Mojito connoisseur and now happily retired
    where does code go ?
    look here
    how to insert code

    how to enter array formula

    why use -- in sumproduct
    recommended reading
    wiki Mojito

    how to say no convincingly

    most important thing you need
    Martin Wilson: SPV
    and RSMBC

  3. #3
    Registered User
    Join Date
    03-01-2010
    Location
    India
    MS-Off Ver
    Excel 2007
    Posts
    26

    Re: Nth cell of a column

    Thank you for your reply ... There are blanks !

  4. #4
    Forum Expert Cutter's Avatar
    Join Date
    05-24-2004
    Location
    Ontario,Canada
    MS-Off Ver
    Excel 2010
    Posts
    6,451

    Re: Nth cell of a column

    Using what worked for you:

    =INDEX(B:B,COUNTA(E:E)-1)

  5. #5
    Valued Forum Contributor
    Join Date
    04-30-2012
    Location
    Australia
    MS-Off Ver
    Excel 2010
    Posts
    547

    Re: Nth cell of a column

    If column E has numbers, try

    =INDEX(B1:B100,MATCH(99^99,E1:E100,1))

    If column E has text, try

    =INDEX(B1:B100,MATCH("zzzz",E1:E100,1))

+ 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