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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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