I figured out how to make this work for a single column but now I need to calculate the Win/Loss rate from two different columns. One for Wins, One for losses
I tried the following and it did not work:
Original code for a single column calculation
Wins:
Losses:
I tried the following and it did not work:
Excel Formula:
=IFERROR( (COUNTIF(J$5:J$157,D$5:D$157">0"))/SUM(--(J$5:J$157,D$5:D$157<>"")), "")
Original code for a single column calculation
Wins:
Excel Formula:
=IFERROR( (COUNTIF(D$5:D$157,">0"))/SUM(--(D$5:D$157<>"")), "")
Losses:
Excel Formula:
=IFERROR( (COUNTIF(D$5:D$157,"<0"))/SUM(--(D$5:D$157<>"")), "")