I want to look at a column and return the Nth Non-blank value. For the most part, I will only want to return the first 15 non-blank values.
The below question has an answer that almost works for me, but I can't figure out how to modify the formula:
How to get nth non-blank column in Excel
The formula finds the 3rd to last non blank value in a column:
=INDEX(A1:A202,AGGREGATE(14,6,ROW(A1:A202)/(A1:A202<>""),3))
I thought the modification would be easy to just find the 3rd value, but I can't seem to figure it out. Can someone please help me modify this and help explain to me what this formula is doing?
Thanks