Forum Discussion
Poornima2023
2 years agoHelper I
Formula to create win%
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
- Anonymous2 years ago
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.
vinodDrinkPak
2 years agoHelper II
Win Percentage =
DIVIDE(
CALCULATE(
COUNTROWS('Pipeline'),
'Pipeline'[Status] = "Win"
),
CALCULATE(
COUNTROWS('Pipeline'),
'Pipeline'[Status] = "Win" || 'Pipeline'[Status] = "Lost"
),
0
)