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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Anonymous
Not applicable

Incorrect total value in the table or matrix however values are matching in excel

Hello,

I don't understand what kind of magic it is when I up the table, grand total isn't appropriately calculated however its still matches the excel grand total & now I suspect the subtotals aren't correct,
Please help me find the solution
Table I Got in Power Bi

BS097_0-1659452180270.png
Excel sheet 

BS097_1-1659452582452.png

Tables: Table 1 & Table 2 established relationship through both ways combined code

BS097_2-1659452969425.png

 

I look forward to it 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Anonymous ,

 

I suggest you to create a measure by SUMX() based on [new_originalbudget202223] and [count] measure.

new_originalbudget202223 = SUM('TableName'[Original Budget 2022/23])
Count of new_originalbudget202223 = COUNT('TableName'[Original Budget 2022/23])

New Measure:

Measure1 = SUMX(VALUES('TableName'[Month]),[new_originalbudget202223])
Measure2 = SUMX(VALUES('TableName'[Month]),[Count of new_originalbudget202223])

 

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

1 REPLY 1
Anonymous
Not applicable

Hi @Anonymous ,

 

I suggest you to create a measure by SUMX() based on [new_originalbudget202223] and [count] measure.

new_originalbudget202223 = SUM('TableName'[Original Budget 2022/23])
Count of new_originalbudget202223 = COUNT('TableName'[Original Budget 2022/23])

New Measure:

Measure1 = SUMX(VALUES('TableName'[Month]),[new_originalbudget202223])
Measure2 = SUMX(VALUES('TableName'[Month]),[Count of new_originalbudget202223])

 

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.

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors