Forum Discussion
RB_Barbour-ABI
4 years agoFrequent Visitor
Calculating Win Rate by Company
I am relatively new to Power BI and I am attempting to calculate the win rate between competing companies bidding on projects. The data is set out to have a row per company relationship and so pr...
- 4 years ago
Hi, RB_Barbour-ABI ;
Try it.
the above as win number and win value.
then create a meaure.
Loss Number = CALCULATE(COUNT([Loss]),FILTER(ALL('Table'),[Loss]=MAX('Table'[Win])&&[Win]=MAX('Table'[Loss])))+0Loss value = CALCULATE(SUM([Value]),FILTER(ALL('Table'),[Loss]=MAX('Table'[Win])&&[Win]=MAX('Table'[Loss])))+0Total Bids = COUNT([Loss])+[Loss Number]Total Bid Value = SUM('Table'[Value])+[Loss value]Win Rate Number (%) = COUNT([Loss])/[Total Bids]Win Rate Value (%) = SUM('Table'[Value])/[Total Bid Value]The final show:
Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
SpartaBI
Community Champion
4 years agoRB_Barbour-ABI you can PM me if you want to do a quick zoom to look together