Home > Software engineering >  Excel: Make a dynamic formula that counts a specified max sum of X consecutive days
Excel: Make a dynamic formula that counts a specified max sum of X consecutive days

Time:08-21

I am trying to make a formula that could count the max sum of any number of consecutive days that I indicate in some cell. Here is the dataset and the formula: enter image description here

CodePudding user response:

The answer here was posted by another user on another website, so I will repost it here:

One way to achieve this without relying on a VBA solution would be to use the BYCOL() function (available for Excel for Microsoft 365):

=BYCOL(array, [function]) The array specifies the range to which you want to apply your function, and the function itself is specified in a lambda statement. In the end, you want to get the minimum value of the sum of x consecutive days. Assuming that your data is stored in the range E2:AI2 and the number of consecutive days is stored in cell A1, the function looks like this:

=MIN(BYCOL(E2:AI2,LAMBDA(col,SUM(OFFSET(col,,,,A1)))))

The MIN() part ensures that you get only the smallest sum of the array (all sums of the x consecutive values) returned. The array is simply the range in which your data is stored; it is named in the lambda argument col and consequently used by its name. In your case, you want to apply the sum function for, e.g., x = 4 consecutive days (where 4 is stored in cell A1).

However, with this simple specification, you run into the problem of offsetting beyond cells with values toward the right end of the data. This means that the last sum you get would be 81.8 (value on 31 Jan) 3 times 0 because the cells are empty. To avoid this, you can combine your function with an IF() statement that replaces the result with an empty cell if the number of empty cells is greater than 0. The adjusted formula looks like this:

=MIN(BYCOL(E2:AI2,
LAMBDA(col,IF(COUNTIF(OFFSET(col,,,,A1),"")>0,"",SUM(OFFSET(col,,,,A1))))))

If you do not have the Microsoft 365 version, there are two approaches that would also work. However, the two approaches are a bit more tedious, especially for cases with multiple days (because the number of days can not really be set automatically; except for potentially constructing the ranges with a combination of ADDRESS() and INDIRECT()), but I would still argue a bit neater than your current specification:

=MIN(INDEX(E2:AF2 F2:AG2 G2:AH2 H2:AI2,0))

=SUMPRODUCT(MIN(E2:AF2 F2:AG2 G2:AH2 H2:AI2))

The idea regarding the ranges is the same in both scenarios, with a shift in the start and end of the range by 1 for each additional day.

CodePudding user response:

Another approach getting to the same result:

=LET(range,E2:AI2,
     cons,4,
     repeat,4,
MAX(
    BYROW(SEQUENCE(cons,repeat,,1)-INT(SEQUENCE(cons,repeat,0,1/repeat))*(repeat-1),
          LAMBDA(x,SUM(INDEX(range,1,x))))))

This avoids OFFSET (volatile, slowing your file down) and the repeat value, consecutive number and/or the range are easily changeable.

Hope it helps (I answered to the max sum, as stated in the title. Change max to min to get the min sum result.

  • Related