Forum Discussion
Dev_B_PBIing
3 years agoFrequent Visitor
Attach rate measurement
I am working on calculating percentage/attach rate of bundles of products to total won deals. I know I probably need to use the Divide function to make this work, the issue is that I cannot figure o...
Anonymous
3 years agoNot applicable
Hi Dev_B_PBIing ,
According to your description, here are my steps you can follow as a solution.
(1) This is my test data.
(2) We can create measures.
Count of Deals won with Bundle =
COUNTROWS(FILTER(ALL('Table1'),'Table1'[deal status]="Won" && RELATED('Table2'[actual bundle name])<>BLANK()))All Deals won = COUNTROWS(FILTER(ALL('Table1'),'Table1'[deal status]="Won"))Percentage of Deals won with Bundle = DIVIDE('Table1'[Count of Deals won with Bundle],'Table1'[All Deals won],0)
(3) Then the result is as follows.
If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. Thank you.
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.