My sheet has a row of personal numeric data for each day, with the dates in B3:B114. As time goes by I extend the sheet by adding blocks of rows. I want to find the average of the entries in column S3:S114, but only up to today’s date. Zero values can appear within that range and should contribute to the average.
At the moment I have the simple formula =AVERAGE(S3:S114), but what should I put in place of S114 to limit the calculation to the days up to the present? I assume I need a ROW() function and a date comparison, but I can’t see how to select the one row that represents today.