I have a table and one of the columns will have a lot of blank cells with some numeric values entered into it. I need to pull the last numeric value that is entered in the column.
The table will be filtered from time to time and I want the formula to update the last numeric value accordingly. In other words, if the table is filtered, I want the formula to only pull the last numeric value based upon the VISIBLE cells and to ignore the hidden cells that are filtered out.
The following equation will show the last numeric value in Column L:
=INDEX(L:L,MATCH(9.9999E+306,L:L))
However, when the table is filtered that equation stills shows the absolute last value, even if that cell is hidden. Is there a way to get the same result from the previous formula but to ignore hidden cells?
Bookmarks