daddylonglengs had posted this formula that returns the highest streak in a set of data:

MAX(FREQUENCY(IF($P$16:$P$1000>0,ROW($P$16:$P$1000)),IF($P$16:$P$1000<=0,ROW(P16:P1000))))

afterwards, he posted the formula that would return the highest streak in a month:

MAX(FREQUENCY(IF($R$16:$R$1000="MAR",IF($F$16:$F$1000>0, ROW($R$16:$R$1000))),IF($R$16:$R$1000="MAR",IF($F$16:$F$1000<0, ROW($R$16:$R$1000)))))

Now, how would I get, FOR EACH MONTH, a cummulative of streaks. For example, in March, how many times did I win 2, 3, 4, 5, etc. times in a row. Daddy also posted an array formula that gives this result for a cummulative total, but not for a period (Monthly) total. I haven't been able to combine them sucessfully...

=FREQUENCY(FREQUENCY(IF($F$16:$F$3000>0,ROW($F$16:$F$3000)), IF($F$16:$F$3000<=0,ROW($F$16:$F$3000))),{0;1;2;3;4;5;6;7;8;9})