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

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
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,091
Messages
6,128,779
Members
449,468
Latest member
AGreen17

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