Thank you Alex1. It works indeed....
This formula gives the required result however:
=INDEX(A1:A32;MAX(ISNUMBER(B2:B32)*ROW(B2:B32)))
Now, how do I get it to display the result (value) of the previous month's same formula, as long as there are no events in the current month? I.e., when ISNUMBER is false in the whole array?
I tried {=IF(COUNTIF(B2:B32)=0;'2024-05'.B35; INDEX(A1:A32;MAX(ISNUMBER(B2:B32)*ROW(B2:B32))))}
but it returned the text of cell A1 plus inserted all the days of the whole months in the rows below, replacing everything that already was in those cells.
Also, {=IF(ISNUMBER(B2:B32); INDEX(A1:A32;MAX(ISNUMBER(B2:B32)*ROW(B2:B32))));'2024-05'.B35)} yields Error.
Statistics: Posted by okjhum — Wed Jul 03, 2024 11:37 am