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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
LuizPoleza
Frequent Visitor

Matrix and tables total incorrect

Hello there, I need some help

 

One of my users noticied that the totals being shown on matrix (and I tried on a table, same wrong results) are wrong.

See the example below. It is "missing" 1 quantity in both collumns, and I tried filtering everything to see if I can get the missing row, but I didn't find it.

When exporting to Excel and doing a sum, the totals are correct.

Then, I went back to PBI and by using a calculator, I manually sum every single row I can see on the matrix, and it was RIGHT!

So, the data is not wrong, but the total itself.

 

sum.png

 

For the calculated collumn, this is the DAX

 

CALCULATE(
    DISTINCTCOUNT(FuncionariosAtivos[Matricula]),
    FuncionariosAtivos[DATA] = Today()
)

 

 

Here is a pastebin link for the exported DATA (CSV format)

https://pastebin.com/J21gcJnb

 

Can you provide some help? This is driving me nuts!

 

EDIT: there are no filters on the page and on the visual

5 REPLIES 5
LuizPoleza
Frequent Visitor

Hi @AmiraBedh 

Thank you so much for your time. I really appreciate.

 

I am not using a calculated collumn. "Realizado" is a DAX measure.

I didn't understood. Can you further elaborate?

Hi, @LuizPoleza 

 

Can you provide source data or example files before the calculation? This will better describe your problem.

How to provide sample data in the Power BI Forum - Microsoft Fabric Community

 

Best Regards,

Community Support Team _Charlotte

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

Hi @v-zhangtin-msft 

I´m sorry, can you tell which sample data you need?

I´ve provided the example on pastebin on the first post, as per @AmiraBedh tried in her solution

AmiraBedh
Super User
Super User

You should use a measure and not a calculated column, the total row does not simply sum the visible rows; instead, it evaluates the DAX formula in the total context :

My Measure = SUMX(
    FILTER(
        FuncionariosAtivos,
        FuncionariosAtivos[Realizado] >= 0
    ),
    FuncionariosAtivos[Realizado]
)

 

AmiraBedh_0-1737311767619.png

 


Proud to be a Power BI Super User !

Microsoft Community : https://docs.microsoft.com/en-us/users/AmiraBedhiafi
Linkedin : https://www.linkedin.com/in/amira-bedhiafi/
StackOverflow : https://stackoverflow.com/users/9517769/amira-bedhiafi
C-Sharp Corner : https://www.c-sharpcorner.com/members/amira-bedhiafi
Power BI Community :https://community.powerbi.com/t5/user/viewprofilepage/user-id/332696

Hi @AmiraBedh 

Thank you so much for your time. I really appreciate.

 

I am not using a calculated collumn. "Realizado" is a DAX measure.

I didn't understood. Can you further elaborate?

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

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