+ Reply to Thread
Results 1 to 7 of 7

get lowest row value in column

  1. #1
    Registered User
    Join Date
    01-24-2012
    Location
    Sanford, FL
    MS-Off Ver
    Excel 2011 for Mac
    Posts
    3

    get lowest row value in column

    Hello,

    I'd like to know a formula for returning the lowest non-blank value in a column. Imagine a checkbook register, where the balance column will naturally fill down with time. I'd like to see the ending balance, no matter what row it is on, in a cell on a different sheet. I there a way to do this?
    Last edited by rainman101; 01-24-2012 at 03:04 PM.

  2. #2
    Forum Expert
    Join Date
    07-16-2010
    Location
    Northumberland, UK
    MS-Off Ver
    Excel 2007 (home), Excel 2010 (work)
    Posts
    3,054

    Re: get lowest row value in column

    If your balance is in column A on sheet1 then try:

    =LOOKUP(REPT("z",255),Sheet1!A:A)

    Edited to add: Stupid me, that doesn't work with numeric values.

    Instead try:

    =INDEX(Sheet1!A:A,MAX(IF(Sheet1A1:A1000<>"",ROW(Sheet1!A1:A1000))),0)

    Entered as an array formula, i.e. you must enter it using Ctrl-Shift-Enter, not just enter.
    Last edited by Andrew-R; 01-24-2012 at 01:29 PM.

  3. #3
    Registered User
    Join Date
    01-24-2012
    Location
    Sanford, FL
    MS-Off Ver
    Excel 2011 for Mac
    Posts
    3

    Re: get lowest row value in column

    Thanks! I'll try this when I get home and let you know how it worked.

  4. #4
    Registered User
    Join Date
    01-23-2012
    Location
    Michigan
    MS-Off Ver
    Excel 2007
    Posts
    3

    Re: get lowest row value in column

    Here's another way:

    =INDEX(E4:E12,MATCH(0,E4:E12,-1),0) where E4:E12 is the location of the column of numbers

  5. #5
    Forum Guru
    Join Date
    05-24-2011
    Location
    India
    MS-Off Ver
    Office 2021
    Posts
    2,237

    Re: get lowest row value in column

    This will return the LAST NUMERIC value in column A:A

    =LOOKUP(9E300,A:A)

    This will return the LAST TEXT value in column A:A

    =LOOKUP(REPT("z",255),A:A)

    This will return the LAST VALUE (regardless of entry, Number or Text) in column A:A

    =INDEX(A:A,MAX(IFERROR(MATCH(REPT("z",255),A:A),1),IFERROR(MATCH(9E300,A:A),1)))

    Or a short one with CTRL+SHIFT+ENTER

    =INDEX(A:A,MAX(IFERROR(MATCH({"zzzzzzzzzzzzzzz",9E300},A:A),1)))
    Regards,
    Haseeb Avarakkan

    __________________________________
    "Feedback is the breakfast of champions"

  6. #6
    Forum Expert NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    34,898

    Re: get lowest row value in column

    OR

    =LOOKUP(9.999999E+307,Sheet1!A:A)
    Where there is a will there are many ways.

    If you are happy with the results, please add to the contributor's reputation by clicking the reputation icon (star icon) below left corner

    Please also mark the thread as Solved once it is solved. Check the FAQ's to see how.

  7. #7
    Registered User
    Join Date
    01-24-2012
    Location
    Sanford, FL
    MS-Off Ver
    Excel 2011 for Mac
    Posts
    3

    Re: get lowest row value in column

    Thanks guys. You're awesome.

+ 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