cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
darko861
Resolver II
Resolver II

Wrong Totals in Table and Matrix

Hi community,

 

I have the following pbix file:

 

https://www.dropbox.com/s/4o7jizvr07gwwb8/DataTest.pbix?dl=0

 

I have a column in the table and matrix called Revenue Display which summarizes the data to 47 136 which is wrong. Based on my condition I have also created a filter that displays the revenue if the GM is >=100 %. Both the table and matrix have selected the correct amounts but do not summarize to 198 244 which is the correct total amount for the column Revenue Display. Please note that totals for the month-year level are also incorrect for the matrix. 

 

How can I re-write my Dax so that it calculates the correct totals?

 

Thanks for your help!

 

darko861_3-1685030218096.png

 

 

 

 

1 ACCEPTED SOLUTION

Hi @darko861 ,

 

I suggest you to try this code to create a measure.

Revenue Display 2 = 
VAR _ADD =
    SUMMARIZE (
        Data,
        DimDate[Month-Year],
        Company[FTG],
        DimAccounts[Subheader],
        DimAccounts[Subheader2],
        "XXX", [Revenue_Filter]
    )
RETURN
    SUMX ( _ADD, [Revenue_Filter] )

vrzhoumsft_0-1685428170411.png

As the above screenshot, the duration of [Revenue Display 2] is only 355 ms, and the duration of [Revenue Display 3] is 11245 ms.

 

Best Regards,
Rico Zhou

 

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

7 REPLIES 7
Greg_Deckler
Super User
Super User

@darko861 First, please vote for this idea: https://ideas.powerbi.com/ideas/idea/?ideaid=082203f1-594f-4ba7-ac87-bb91096c742e

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

Also: https://youtu.be/uXRriTN0cfY
And: https://youtu.be/n4TYhF2ARe8


@ 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!:
Mastering Power BI 2nd Edition

DAX is easy, CALCULATE makes DAX hard...

@Greg_Deckler , Does not work, please check my sample file

I've got the table to work with this measure:

 

Revenue Display2 =

var MonthYear = SUMMARIZECOLUMNS(Company[FTG],DimDate[Month-Year],DimAccounts[Subheader],DimAccounts[Subheader2],"_Value",[Revenue_Filter])


RETURN

IF(HASONEVALUE(Company[FTG]),[Revenue_Filter],SUMX(MonthYear,[_Value]))
 
But the Matrix generates an error with the above measure, is there a better workaround?
 
 

The correct totals for the Matrix visual can be achieved by using this measure:

 

Revenue Display 3 = SUMX(ADDCOLUMNS(CROSSJOIN(VALUES(Company[FTG]),VALUES(DimDate[Month-Year]),VALUES(DimAccounts[Subheader]),VALUES(DimAccounts[Subheader2])),"XXX",[Revenue_Filter]),[Revenue_Filter])
 
But again, it doesn't seem optimal as it is slow when using a cross-join. Is there a better solution for both the table and matrix visual?
 
Your help is much appreciated.
 

Hi @darko861 ,

 

I suggest you to try this code to create a measure.

Revenue Display 2 = 
VAR _ADD =
    SUMMARIZE (
        Data,
        DimDate[Month-Year],
        Company[FTG],
        DimAccounts[Subheader],
        DimAccounts[Subheader2],
        "XXX", [Revenue_Filter]
    )
RETURN
    SUMX ( _ADD, [Revenue_Filter] )

vrzhoumsft_0-1685428170411.png

As the above screenshot, the duration of [Revenue Display 2] is only 355 ms, and the duration of [Revenue Display 3] is 11245 ms.

 

Best Regards,
Rico Zhou

 

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

 

@v-rzhou-msft , hi Rico, you summarized the whole Data table, if you dealing with large data sets, let's say the data table had millions of rows, would you still reference the whole Data table or just some columns from the data table in the Summerize measure? how would that measure look like if the data table had millions of rows?

 

Thanks!

Thanks, it is much quicker!

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors