Forum Discussion
HenrikKruse
Oct 05, 2023Copper Contributor
How to bottom and second to bottom automatic send to overview?
I am using a spreadsheet to calculate my electricity consumption and a price every quarter. Once a quarter I have to make a report. I would like it to generate the report automatic. We are sharing t...
- Oct 05, 2023
Assuming your data is sorted, LARGE() should do the trick . You can change 1 to 2 if you want the second one from bottom.
=LARGE(your range, 1)
SanthoshKunder
Oct 05, 2023Iron Contributor
Assuming your data is sorted, LARGE() should do the trick . You can change 1 to 2 if you want the second one from bottom.
=LARGE(your range, 1)
- HenrikKruseOct 06, 2023Copper ContributorIt works great for the first two, as the reading up the total consumption only increases. However, the last one is the price and that varies up and down in value.
- SanthoshKunderOct 06, 2023Iron Contributor
You can cover LARGE() with SORT() for the last column.
=SORT(LARGE(Your range,1))- HenrikKruseOct 07, 2023Copper Contributor
It says it is not valid. Even if I just choose from G11 to G40 insted of the Table1.
If it does not work I can live with having to fill one cell manuel, just a bummer when the rest now works so well.