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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
Anonymous
Not applicable

Grand Total in MATRIX

Hi

My input datset is as follows:

 

ara_4_0-1596933637474.png

 

I've created a MATRIX report as follows:

 

ara_4_1-1596933714452.png

MEasure is calculated as follows:

 

Measure = if(ISFILTERED('Sheet1 (2)'[Attributes] ), 'Sheet1 (2)'[value2],CALCULATE('Sheet1 (2)'[value2],'Sheet1 (2)'[Attributes]="Actual"))
 
The above MEasure calculates grand totals as sum of all actuals. My another requirements is to calculate totals in column FUM (inv option column). in fum it needs to add all variance attribute values
 
any help is appreciated
 
ara
1 ACCEPTED SOLUTION
Icey
Community Support
Community Support

Hi @Anonymous ,

 

You can write you measure like so:

Measure = 
IF (
    ISFILTERED ( 'Sheet1 (2)'[Attributes] ),
    'Sheet1 (2)'[value2],
    IF (
        MAX ( 'Sheet1 (2)'[invest] ) = "FUM",
        CALCULATE ( 'Sheet1 (2)'[value2], 'Sheet1 (2)'[Attributes] = "Variance" ),
        CALCULATE ( 'Sheet1 (2)'[value2], 'Sheet1 (2)'[Attributes] = "Actual" )
    )
)

res.png

 

You can check more details from here.

 

 

Best Regards,

Icey

 

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

2 REPLIES 2
Icey
Community Support
Community Support

Hi @Anonymous ,

 

You can write you measure like so:

Measure = 
IF (
    ISFILTERED ( 'Sheet1 (2)'[Attributes] ),
    'Sheet1 (2)'[value2],
    IF (
        MAX ( 'Sheet1 (2)'[invest] ) = "FUM",
        CALCULATE ( 'Sheet1 (2)'[value2], 'Sheet1 (2)'[Attributes] = "Variance" ),
        CALCULATE ( 'Sheet1 (2)'[value2], 'Sheet1 (2)'[Attributes] = "Actual" )
    )
)

res.png

 

You can check more details from here.

 

 

Best Regards,

Icey

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Greg_Deckler
Super User
Super User

@Anonymous This looks like a measure totals problem. Very common. See my post about it here: https://community.powerbi.com/t5/DAX-Commands-and-Tips/Dealing-with-Measure-Totals/td-p/63376

Also, this Quick Measure, Measure Totals, The Final Word should get you what you need:
https://community.powerbi.com/t5/Quick-Measures-Gallery/Measure-Totals-The-Final-Word/m-p/547907


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!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.