Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
meirlicht
Frequent Visitor

DAX ALL() not working

I am trying to filter out items that only have 1 unit price.
I created the following measure which is supposed to return the number of distinct unit prices, ignoring table filters.
Distinct Count of Price 2.0CALCULATE(DISTINCTCOUNT(SalesData[Unit Price]),ALL(SalesData[Year], SalesData[Month], SalesData[Unit Price]))
The issue is, as you can see in the followig screenshot, the measure is still impacted by the Month filter and returning a different Distinct Count of Price 2.0 for different months.
meirlicht_0-1706115769665.png

 

 
1 ACCEPTED 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:

vyifanwmsft_0-1706777508628.png

 

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.

View solution in original post

3 REPLIES 3
v-yifanw-msft
Community Support
Community Support

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:

vyifanwmsft_0-1706149646889.png

 

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:

vyifanwmsft_0-1706777508628.png

 

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.

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.