Sunday, August 11, 2013

Google Spreadsheet Display bottom most entry 2

Question:

( 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?



Datetextvalue

8/1PT1355

8/3T9152

8/7
66

8/8


8/9









what formula to:


look up above and display most recent data???




for example:8/9T9166


Solution:

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 

Thanks,

1 comment:

  1. Is there any way to extend formula so that it collects/displays, say, the five most recent entries?

    ReplyDelete