I'm looking for a simple formula to compare and return with the minimum value of every nth cell.
My first value is in cell C26 and there are expected to be an undefined amount of values on the every 47th cell of that column after that.
I've been searching around and generalized a formula as follows:
=min(mod(row(C26),47)=0)
or
=min(offset($C$26,(row()-1)*47,0))
But obviously, one of them are giving me the result i wanted (the value in the cells are dates)
I'm hoping that someone would be able to assist?
Thank you!