( 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 F3:
=query(A:A;"select * limit 1 offset "&counta(A:A)-1;0)
or:
=indirect("A"&counta(A:A))
I have the following formula in cell F4:
=query(B:B;"select * limit 1 offset "&counta(B:B)-1;0)
or:
=indirect("B"&counta(B:B))
I have the following formula in cell F5:
=query(C:C;"select * limit 1 offset "&counta(C:C)-1;0)
or:
=indirect("C"&counta(C:C))
Also have a look at the following link for solution by another option:
http://igoogledrive.blogspot.com/2013/08/display-bottom-most-entry-2.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
No comments:
Post a Comment