Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I need help in making measure where in I want to calculate Win%=Win/(Loss+Win)(The data contains pipeline where status is win, lost and active)
Please help
Solved! Go to Solution.
Hi @Poornima2023 ,
Please try to create a measure with below dax formula:
Win% =
VAR tmp =
FILTER ( ALL ( 'Table' ), 'Table'[Status] = "Won" )
VAR tmp1 =
FILTER ( ALL ( 'Table' ), 'Table'[Status] IN { "Lost", "Won" } )
VAR _a =
SUMX ( tmp, [Value] )
VAR _b =
SUMX ( tmp1, [Value] )
RETURN
FORMAT ( DIVIDE ( _a, _b ), "Percent" )
For more details, please refer the attached .pbix file.
Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Poornima2023 ,
Please try to create a measure with below dax formula:
Win% =
VAR tmp =
FILTER ( ALL ( 'Table' ), 'Table'[Status] = "Won" )
VAR tmp1 =
FILTER ( ALL ( 'Table' ), 'Table'[Status] IN { "Lost", "Won" } )
VAR _a =
SUMX ( tmp, [Value] )
VAR _b =
SUMX ( tmp1, [Value] )
RETURN
FORMAT ( DIVIDE ( _a, _b ), "Percent" )
For more details, please refer the attached .pbix file.
Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
There is single table in which status is marked as lost, win and active.
The win% formula needs to be win%=won/(lost+won)
Example of table is as below:
Projetc Name | Value | Status |
A | 5 | Won |
B | 10 | Won |
| C | 100 | Lost |
| D | 40 | Active |
Win Percentage =
DIVIDE(
CALCULATE(
COUNTROWS('Pipeline'),
'Pipeline'[Status] = "Win"
),
CALCULATE(
COUNTROWS('Pipeline'),
'Pipeline'[Status] = "Win" || 'Pipeline'[Status] = "Lost"
),
0
)
Hi,
Try this:
Win percentage = divide(sum(loss[loss table]),sum(win[win table]))
That is not formatted properly, but that should work.
Best,
Cam
Notes on the divide function:
-DAX has a safeguard for DIV/0
-You must aggregate the total first, and then divide
-There is a potential for a 3rd argument after the 2 parentheses, which is basically the end of an “IF” function in Excel, which means if you get null or 0, the last argument will return whatever you want it to be.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!