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
FergalK
Helper I
Helper I

Need to aggregate multiple values into single value/ignore the filter context (DAX)

Hi

I have a formula as follows that provides the correct data but not as I want it displayed (eg when in Excel pivot table)

What I want it to do is to provide the same total value regardless of whether I add the "mtrc_nm" into the rows area of the pivot table

 

Here is the formula:

mtrc_all_tcob_ttl:= CALCULATE ([mtrc_ttl], AND(TCOB[mtrc_nm] <> "rma_crdt" , TCOB[mtrc_nm] <> "net_rev")

 

Here is how it looks in the pivot table:

image1.png

 

 

 

 

 

 

 

However, the following image is how I want it to appear -ie; I want it to ignore the "mtrc_nm" dimension (I think this is called ignoring the filter context??)

image2.png

 

 

 

 

 

I think I need to use the "ALL" or "ALLEXCEPT" function somehow but can't figure it out.

 

Appreciate any advice!!

thanks

Fergal

2 REPLIES 2

mtrc_all_tcob_ttl:= CALCULATE ([mtrc_ttl], ALL(TCOB[mtrc_nm])



* Matt is an 8 times Microsoft MVP (Power BI) and author of the Power BI Book Supercharge Power BI.

hi Matt

thanks for the info but that would not exclude the metrics I need excluded

[mtrc_nm] <> "rma_crdt" and [mtrc_nm] <> "net_rev"

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.

Top Solution Authors