Forum Discussion
Anonymous
6 years agoNot applicable
Win Rate (best practice)
Hello - I am putting together an analysis of our CRM data. I've seen a number of examples of Win Rate % on the internet. Does anyone that has done this type of analysis before have a rec...
- 6 years ago
Hi Anonymous ,
You may create measure like DAX below.
Win Rate = DIVIDE ( CALCULATE ( COUNT ( Table[Column] ), FILTER ( ALLSELECTED ( Table ), [Status] = "Win" ) ), CALCULATE ( COUNT ( Table[Column] ), ALL ( Table ) ) )Best Regards,
Amy
Community Support Team _ Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-xicai
6 years agoCommunity Support
Hi Anonymous ,
You may create measure like DAX below.
Win Rate =
DIVIDE (
CALCULATE (
COUNT ( Table[Column] ),
FILTER ( ALLSELECTED ( Table ), [Status] = "Win" )
),
CALCULATE ( COUNT ( Table[Column] ), ALL ( Table ) )
)
Best Regards,
Amy
Community Support Team _ Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.