I have a working formula where column W is the range, and the criteria is LESS THAN OR EQUAL TO -0.15.
=SUMPRODUCT((W:W<=-0.15)*(SUBTOTAL(103,OFFSET(INDEX(W:W,1),ROW(W:W)-MIN(ROW(W:W)),0)))) However, I'm trying to add a criteria to the above formula to include GREATER THAN -0.25
I'm getting stumped on how to do it.
This is what I tried with no luck:
=SUMPRODUCT((W:W<=-0.15,W:W>-0.25)*(SUBTOTAL(103,OFFSET(INDEX(W:W,1),ROW(W:W)-MIN(ROW(W:W)),0))))
AGGREGATE()function.