Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowData Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more
Hi Experts,
I have created a measure in DAX as below and is giving me the required output. I am just wondering if there is any efficient way to write this calculation in DAX in terms of performance.
No. Of Successful Calls =
CALCULATE(COUNT(vw_z_m07[interactions]),
FILTER( vw_z_m07, vw_z_m07[business trans. type] = "ZB11"),
FILTER(vw_z_m07, vw_z_m07[current opportunity phase] in {"L50","L53"}),
FILTER(vw_z_m07, vw_z_m07[sales cycle] = "8"),
FILTER(vw_z_m07,vw_z_m07[category code] <> "A2ZSKL03010001"),
FILTER(vw_z_m07,vw_z_m07[category code] <> "A2ZSKL03010002"),
FILTER(vw_z_m07,vw_z_m07[category code] <> "A2ZSKL03010003"),
FILTER(vw_z_m07,vw_z_m07[category code] <> "A2ZSKL03050001"),
FILTER(vw_z_m07,vw_z_m07[category code] <> "A2ZSKL01230001"),
FILTER(vw_z_m07,vw_z_m07[category code] <> "A2ZSKL01240001"),
FILTER(vw_z_m07,vw_z_m07[category code] <> "A2ZSKL01430001"),
FILTER(vw_z_m07,vw_z_m07[category code] <> "A2ZSKL01440001") )
Thanks.
Regards,
Solved! Go to Solution.
Did you try something like the one below?
No. Of Successful Calls =
CALCULATE(COUNT(vw_z_m07[interactions]),
FILTER( vw_z_m07, vw_z_m07[business trans. type] = "ZB11" && vw_z_m07[current opportunity phase] in {"L50","L53"} && vw_z_m07[sales cycle] = "8" && ....))
Did you try something like the one below?
No. Of Successful Calls =
CALCULATE(COUNT(vw_z_m07[interactions]),
FILTER( vw_z_m07, vw_z_m07[business trans. type] = "ZB11" && vw_z_m07[current opportunity phase] in {"L50","L53"} && vw_z_m07[sales cycle] = "8" && ....))
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 23 | |
| 23 | |
| 21 | |
| 20 | |
| 15 |
| User | Count |
|---|---|
| 58 | |
| 55 | |
| 43 | |
| 30 | |
| 24 |