Forum Discussion
Anonymous
6 years agoNot applicable
win rate with filter
Hello PBI Community, I have the current win rate formula but would like to constrain it (via formula) to only those opportunities that are above $1,000,000. I can then compare it to our ...
Ashish_Mathur
6 years agoSuper User
Hi,
Share some data and show the expected result.
- Anonymous6 years agoNot applicable
The formula below looks at ALL of the won opportunities versus the won/lost. I simply want the same basic result...but with a filter that only looks at those opportunities ("Description") that are $1,000,000 or above.
So, for example, our overall win rate might be 64%. But our win rate for deals over $1 million might only be 38%.
WinRate = DIVIDE (CALCULATE (COUNT ( 'AllOpps-Products'[Description] ),FILTER ( ALL ( 'AllOpps-Products' ), 'AllOpps-Products'[New Status] = "Won" )),CALCULATE (COUNT ( 'AllOpps-Products'[Description] ),FILTER (ALL ( 'AllOpps-Products' ),'AllOpps-Products'[New Status] = "Won"|| 'AllOpps-Products'[New Status] = "Lost")))- Ashish_Mathur6 years agoSuper User
Hi,
Does this measure work?
WinRate = DIVIDE (CALCULATE (COUNT ( 'AllOpps-Products'[Description] ),FILTER ( ALL ( 'AllOpps-Products' ), 'AllOpps-Products'[New Status] = "Won" && 'AllOpps-Products'[Description] >= 1000000)),CALCULATE (COUNT ( 'AllOpps-Products'[Description] ),FILTER (ALL ( 'AllOpps-Products' ),('AllOpps-Products'[New Status] = "Won"|| 'AllOpps-Products'[New Status] = "Lost") && 'AllOpps-Products'[Description] >= 1000000)))