Forum Discussion
dnaman
9 years agoHelper I
Need help calculating % Win Rate
Hi All, Fairly new to Power BI and what 'm trying to do is calculate the %Win Rate for a table that is showing all our sales opportunities. Each sales opp, has a status and i want to calculate ...
- 9 years ago
Measure = CALCULATE(COUNT(Table[Column]),FILTER(Table,[Status]="WON")) / CALCULATE(COUNT(Table[Column]),ALL(Table))
Anonymous
6 years agoNot applicable
I want to make a slight aleration to the formula that you've provided in the past. Instead of divided the data by the total, I want to divide it by win +loss.
Bottom line I want to see win / (win+loss)
Thought, something is not working -- I am a novice
Win Rate = CALCULATE(COUNT(CorpPipeline_ALL[Title]),FILTER(CorpPipeline_ALL, CorpPipeline_ALL[Opportunity Status]="won"))/ CALCULATE(COUNT(CorpPipeline_ALL[Title]),FILTER(CorpPipeline_ALL, CorpPipeline_ALL[Opportunity Status] ="won" AND "lost)))))
I would grealy appreciate any help
lorenz0210
6 years agoHelper I
Hi,
I have several statuses and need help with the dax formula. Also a slight alteration.
Basically here are the statuses:
Win, Loss & Kept-In-House.
To get win the Win Ratio, I need help for dax that will convert this formula
Win Ratio = Win/ Loss + Kept-In-House.
Any help would be greatly appreciated.
Thank you.