( by Kristof Anderson )
For the following three types of data in columns, what formula(s) would you use to have a cell look up and display the bottom most entry?
Date | text | value |
8/1 | PT13 | 55 |
8/3 | T91 | 52 |
8/7 | 66 | |
8/8 | ||
8/9 | ||
? | ? | ? |
8/9 | T91 | 66 |
Have a look at the following screenshot:
I have the following formula in cell B11:
=indirect("B"&counta(indirect("B1:B"&row()-1)))
I have the following formula in cell C11:
=indirect("C"&counta(indirect("C1:C"&row()-1)))
I have the following formula in cell D11:
=indirect("D"&counta(indirect("D1:D"&row()-1)))
Also have a look at the following link for solution by another option:
http://igoogledrive.blogspot.com/2013/08/display-bottom-most-entry.html
I hope the above solution will help you, and if you need more help then please do comment below on this blog itself, I will try to help you out.
I also take up private and confidential projects:
If this blog post was helpful to you, and if you think you want to help me too and make my this blog survive then please donate here: http://igoogledrive.blogspot.com/2012/09/donate.html
Is there any way to extend formula so that it collects/displays, say, the five most recent entries?
ReplyDelete