Calculate Win/Loss rate from two columns. One Wins, One Losses

FXA

Board Regular
Joined
Jan 28, 2023
Messages
71
Office Version
  1. 365
Platform
  1. Windows
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:
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<>"")), "")

1677818696397.png
 

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
See if this works for you:
Excel Formula:
=IFERROR(SUM(--(J$5:J$157>0),--(D$5:D$157>0))/SUM(--(J$5:J$157<>""),--(D$5:D$157<>"")),"")
 
Upvote 1
Solution

Forum statistics

Threads
1,216,030
Messages
6,128,405
Members
449,448
Latest member
Andrew Slatter

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top