This formula:
=INDEX(Q10:XFD10,MATCH(TRUE,INDEX((Q10:XFD10<>0),0),0))
looks up the first non-zero value from column Q
till the end in row 10
.
And it displays the value present in that cell. Suppose the cell found is V10
.
I must display the value in cell V7
.
I cannot change the range to lookup the first non-empty cell, because the higher rows are always filled.
There probably are two possible answers
One answer that looks up 3 rows higher (10-7=3) and another answer that looks up in the fixed row V$7
.
I need the last option.