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
Brad_Roberts
Frequent Visitor

Column Total Missing One Row

I'm attempting to sum up Move_outs (should be -36,657, it's missing the highlight row).  Column 1.Move-Out Data pulls in Change SF < 0 (this works).  1.Move-Out SF creates the total, I have these measures split out to help troubleshoot.  1.Move-Out SF = if(HASONEFILTER('Properties'[Property]),[1.Move-Out Data], SUMX(values('Properties'[Property]),[1.Move-Out Data])).   

 

The purple highlights are my measures:

Start SF = calculate(sum('Tenancy Data'[All Area]),all(Dates),USERELATIONSHIP(Dates[Date],'Inactive Dates'[Start Date]))

Change SF =  calculate(sum('Tenancy Data'[All Area])) - [Start SF ]

 

Brad_Roberts_0-1672264234182.png

Brad_Roberts_1-1672264656752.png

 

Thank you.

3 REPLIES 3
v-tangjie-msft
Community Support
Community Support

Hi @Brad_Roberts ,

 

According to your description, you mean that the measure [1.Move-Out Data] does not total correctly in the matrix, right?

Please try to create a measure [total_1.Move-Out Data].

total_1.Move-Out Data =

SUMX(

    SUMMARIZE(

        'Table',

        'Table'[RowName],

        'Table'[ColumnName],

        "total",[1.Move-Out Data] //your measure

    ),

    [total]

)

 

You can refer to the following documents that may be helpful to you:

How to Make Measures Total Correctly in Power BI Tables - ArcherPoint

 

Best Regards,

Neeko Tang

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

@v-tangjie-msft ,

 

I know why 1.Move-Out Data doesn't work but I can't figure out 1.Move-out SF.

 

Brad_Roberts_0-1672330736846.png

 

This solution was from the article you linked to that I was referencing before my post.  I tried your solution but it results in the same error as above...the -4,051 is left out of total.  I'm not sure why this row is different than the other rows that are included.

 

Brad_Roberts_1-1672330898136.pngBrad_Roberts_2-1672331171716.png

 

Greg_Deckler
Super User
Super User

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

DAX is easy, CALCULATE makes DAX hard...

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