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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
LaurieS
Helper I
Helper I

DAX - Default Filter & ALLEXCEPT

I'm very new in Power BI, and I've written the following DAX and only part of it is working as desired:

 

Total Runs Global =

IF(
[CurrentSelectionsToolType]=[TotalSelectionsToolType],
CALCULATE(sum('pbi sensor_data'[Sensor Runs]),FILTER('pbi sensor_data','pbi sensor_data'[Tool Type]="ABI"),
ALLEXCEPT('pbi luLocations','pbi luLocations'[Region]),
ALLEXCEPT('pbi luLocations','pbi luLocations'[Country]),
ALLEXCEPT('pbi luLocations','pbi luLocations'[Area]),
ALLEXCEPT('pbi luLocations','pbi luLocations'[District])),

CALCULATE(sum('pbi sensor_data'[Sensor Runs]),
ALLEXCEPT('pbi luLocations','pbi luLocations'[Region]),
ALLEXCEPT('pbi luLocations','pbi luLocations'[Country]),
ALLEXCEPT('pbi luLocations','pbi luLocations'[Area]),
ALLEXCEPT('pbi luLocations','pbi luLocations'[District])
))
 

If something is chosen in the tool type slicer, then it behaves as desired and ignores any of the location slicers. If nothing is chosen in the slicer, then it should behave the same way by ignoring any selections in the region, country, etc. slicers but be filtered for tool type ABI. It is filtering for tool type = ABI correctly, but it is reacting to the location slicers when it should be ignoring them. Any guidance would be greatly appreciated.

1 ACCEPTED SOLUTION

Thank you so much for your prompt reply. I had a colleague helping that solved the issue.

 

His solution: Please check the below measures, instead of using single measure I have separated 'pbi sensor_data'[Tool Type]="ABI" filter into separate measure named ABISensorRuns. Then I used new measure ABISensorRuns in Total Runs Global measure.

 

ABISensorRuns = CALCULATE(

        sum('pbi sensor_data'[Sensor Runs]),

        FILTER('pbi sensor_data','pbi sensor_data'[Tool Type]="ABI"))

 

Total Runs Global =

IF(

    [CurrentSelectionsToolType]=[TotalSelectionsToolType],

     CALCULATE(

        [ABISensorRuns],ALLEXCEPT('pbi luLocations','pbi luLocations'[Region]),

            ALLEXCEPT('pbi luLocations','pbi luLocations'[Country]),ALLEXCEPT('pbi luLocations','pbi luLocations'[Area]),

            ALLEXCEPT('pbi luLocations','pbi luLocations'[District])

      ),

    CALCULATE(sum('pbi sensor_data'[Sensor Runs]),ALLEXCEPT('pbi luLocations','pbi luLocations'[Region]),

            ALLEXCEPT('pbi luLocations','pbi luLocations'[Country]),ALLEXCEPT('pbi luLocations','pbi luLocations'[Area]),

            ALLEXCEPT('pbi luLocations','pbi luLocations'[District])

))

View solution in original post

2 REPLIES 2
TeigeGao
Solution Sage
Solution Sage

Hi LaurieS,

Could you please share the sample data and expected result to us? According to your description, my understanding is that you have two rules, one is ignoring all location slicers, another one is setting the default tool type as ABI.

In this scenario, we can use the following DAX query:

Total Runs Global =

IF(

    SELECTEDVALUE('pbi luLocations'[Tool Type])=BLANK(),

    CALCULATE(SUM('pbi luLocations'[Sensor Runs]),FILTER(ALLEXCEPT('pbi luLocations','pbi luLocations'[Other]),'pbi luLocations'[Tool Type] = "ABI")),

    CALCULATE(SUM('pbi luLocations'[Sensor Runs]),ALLEXCEPT('pbi luLocations','pbi luLocations'[Other],'pbi luLocations'[Tool Type])

))

The result will like below:

111.png222.png

Best Regards,

Teige

 

Thank you so much for your prompt reply. I had a colleague helping that solved the issue.

 

His solution: Please check the below measures, instead of using single measure I have separated 'pbi sensor_data'[Tool Type]="ABI" filter into separate measure named ABISensorRuns. Then I used new measure ABISensorRuns in Total Runs Global measure.

 

ABISensorRuns = CALCULATE(

        sum('pbi sensor_data'[Sensor Runs]),

        FILTER('pbi sensor_data','pbi sensor_data'[Tool Type]="ABI"))

 

Total Runs Global =

IF(

    [CurrentSelectionsToolType]=[TotalSelectionsToolType],

     CALCULATE(

        [ABISensorRuns],ALLEXCEPT('pbi luLocations','pbi luLocations'[Region]),

            ALLEXCEPT('pbi luLocations','pbi luLocations'[Country]),ALLEXCEPT('pbi luLocations','pbi luLocations'[Area]),

            ALLEXCEPT('pbi luLocations','pbi luLocations'[District])

      ),

    CALCULATE(sum('pbi sensor_data'[Sensor Runs]),ALLEXCEPT('pbi luLocations','pbi luLocations'[Region]),

            ALLEXCEPT('pbi luLocations','pbi luLocations'[Country]),ALLEXCEPT('pbi luLocations','pbi luLocations'[Area]),

            ALLEXCEPT('pbi luLocations','pbi luLocations'[District])

))

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

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.