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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Anonymous
Not applicable

How to achieve custom aggregation in Matrix?

I have a matrix with 10 levels (or rows), it is a hierarchy.

 

I want to do a measure like:

 

Cost:=



VAR Sumat = [FixedCosts]+[VariableCosts]



Return



SWITCH (

    TRUE (),
    --lowest level
    Sumat,
    
    --9th level 
    ISINSCOPE ( Project[level9] ), IF (Sumat <0, 0, [Sumat]),
   
    --8th level (from this point on the aggregation should be the classic SUM)...
    ISINSCOPE ( Client[Comp] ), --just sum as usual

...

)

 

 

That is,  (from lowest to uppest level...

  • level10  is FixedCosts+VariableCosts
  • level9 is FixedCosts+VariableCosts (but if it is negative I want to display 0).
  • level8 is the sum of level9
  • level7 is the sum of level8

.... and so on

 

Can this be achieved in DAX?

1 REPLY 1
Greg_Deckler
Community Champion
Community Champion

@Anonymous See if this helps: Matrix Measure Total Triple Threat Rock & Roll - Microsoft Power BI Community



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.