Hello Smartsheet Community!
I am trying to create a use a SUMIFS formula to add values in a column that are less than 20 within a 7 day range. Once they cross the threshold of 20, the formula should put a checkbox in the row that breached the threshold.
Next I want to repeat the process in successive rows, but ignore any rows used to cross the first threshold of 20.
I have a working formula for the first part, but I am uncertain how to accomplish the next phase.
Any suggestions would be helpful!
This is the working formula I have used that will yield the results in the chart below (date #s in the 100s). I am wanting an output that looks like the lower portion of the chart (date #s in the 200s).
=IF(SUMIFS(Amount:Amount, Amount:Amount, ABS(@cell ) < 20, [Date #]:[Date #], >=([Date #]@row - 6), [Date #]:[Date #], <=[Date #]@row) >= 20, 1, 0)