Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Solved! Go to Solution.
Hi,
Thanks for your response!
There are some things in this calculation that are not correct from what I asked about from the start.
- Should be divided by No of Orders in the end
- Should exclude all rows that has Workgroup = *GDPR*
I did however solve it afterwards it seems!
Hi @Anonymous ,
I created some data:
Here are the steps you can follow:
1. Create measure.
Contact per Order % =
var _sum1=
SUMX(FILTER(ALL(dim_wrapupgroup),
NOT('dim_wrapupgroup'[Wrap Up Group]) in {"BO Action", "BO Support"}
&&
CONTAINSSTRING('dim_wrapupgroup'[Workgroup],"GDPR")=TRUE())
,[No of Calls]+[No of Emails])
var _sumif=
IF(
MAX('dim_wrapupgroup'[Agent Type]) = "Live Agent",
MAX('dim_wrapupgroup'[No of Chats Answered LA]),
IF(
MAX('dim_wrapupgroup'[Agent Type]) = "VA Agent",
MAX('dim_wrapupgroup'[No of Chats Answered VA]),
MAX('dim_wrapupgroup'[No of Chats Answered])
))
return
_sum1+_sumif
2. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi,
Thanks for your response!
There are some things in this calculation that are not correct from what I asked about from the start.
- Should be divided by No of Orders in the end
- Should exclude all rows that has Workgroup = *GDPR*
I did however solve it afterwards it seems!
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
22 | |
7 | |
6 | |
6 | |
6 |
User | Count |
---|---|
27 | |
12 | |
10 | |
9 | |
6 |