I have a sheet that is tracking win, loss, and ties for a fantasy baseball team. I am trying to display the longest winning, losing, and unbeaten/winless streak.
For the win streak, I used the array {=MAX(FREQUENCY(IF(A2:A10="W",ROW(A2:A10)),IF(A2:A10<>"W",ROW(A2:A10))))] where column A is where the W/L/T is tracked.
How would I add in "T" to the formula so that the ties count toward the unbeaten streak? In the sample below, the longest winning streak should be 3, the longest losing streak should be 2, and the longest unbeaten streak should be 4. I am trying to avoid using a helper column but would do it if it makes things easier.
W
W
W
T
L
L
W
T
W
W
For the win streak, I used the array {=MAX(FREQUENCY(IF(A2:A10="W",ROW(A2:A10)),IF(A2:A10<>"W",ROW(A2:A10))))] where column A is where the W/L/T is tracked.
How would I add in "T" to the formula so that the ties count toward the unbeaten streak? In the sample below, the longest winning streak should be 3, the longest losing streak should be 2, and the longest unbeaten streak should be 4. I am trying to avoid using a helper column but would do it if it makes things easier.
W
W
W
T
L
L
W
T
W
W