Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Solved! Go to Solution.
Hi @meirlicht ,
You can optimize your Dax performance with this code:
Distinct Count of Price 2.0 =
CALCULATE (
COUNTROWS ( DISTINCT ( 'SalesData'[Unit Price] ) ),
ALLEXCEPT ( 'SalesData', 'SalesData'[Code], 'SalesData'[Store] )
)
Final output:
How to Get Your Question Answered Quickly - Microsoft Fabric Community
If it does not help, please provide more details with your desired out put and pbix file without privacy information.
Best Regards,
Ada Wang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @meirlicht ,
Based on the information you provided, you can follow these steps:
1. Change your measure.
Distinct Count of Price 2.0 =
COUNTAX (
FILTER (
ALL ( 'SalesData' ),
'SalesData'[Code] = SELECTEDVALUE ( SalesData[Code] )
),
'SalesData'[Unit Price]
)
Final output:
How to Get Your Question Answered Quickly - Microsoft Fabric Community
If it does not help, please provide more details with your desired out put and pbix file without privacy information.
Best Regards,
Ada Wang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hello Ada, the issue with the measure you provided is it returns count rather than distinct count, but it helped guide me on the right path to the following measure. (I also included the store filter in the measure)
Distinct Count of Price 2.0 =
CALCULATE (
DISTINCTCOUNT ( 'SalesData'[Unit Price] ),
FILTER (
ALL ( 'SalesData' ),
'SalesData'[Code] = SELECTEDVALUE ( SalesData[Code] )
&& 'SalesData'[Store] = SELECTEDVALUE ( SalesData[Store] )
)
)
Is there a more efficient way to do this? It is taking a long time to load in my matrix.
Thank you so much for your time!
Hi @meirlicht ,
You can optimize your Dax performance with this code:
Distinct Count of Price 2.0 =
CALCULATE (
COUNTROWS ( DISTINCT ( 'SalesData'[Unit Price] ) ),
ALLEXCEPT ( 'SalesData', 'SalesData'[Code], 'SalesData'[Store] )
)
Final output:
How to Get Your Question Answered Quickly - Microsoft Fabric Community
If it does not help, please provide more details with your desired out put and pbix file without privacy information.
Best Regards,
Ada Wang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 57 | |
| 44 | |
| 42 | |
| 20 | |
| 18 |