Forum Discussion
dc05_
Jan 13, 2020Copper Contributor
Last number in a series?
Hi, I have a column of numbers that get's added to every day. I need a formula to return me the last number in the series please? Thanks in advance
- Jan 13, 2020
As an alternative:
=INDEX(A:A,AGGREGATE(14,6,(ROW(A:A)*NOT(ISBLANK(A:A))),1),1)
This one allows for blank cells and it doesn't matter if you have a header or not. It returns the value of the last cell in the column that is NOT blank.
Riny_van_Eekelen
Jan 13, 2020Platinum Contributor
As an alternative:
=INDEX(A:A,AGGREGATE(14,6,(ROW(A:A)*NOT(ISBLANK(A:A))),1),1)
This one allows for blank cells and it doesn't matter if you have a header or not. It returns the value of the last cell in the column that is NOT blank.
- TucevDec 11, 2020Copper Contributor
Great! I do want to put other things in that A column but about 30 Rows down, is there a way to stop the value counting at a specific row?
Thanks
Rush
- SergeiBaklanDec 12, 2020Diamond Contributor
- dc05_Jan 13, 2020Copper Contributorthank you very much