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

Sum total lines

Dear All,

 

I have a problem on y table, I calculated Price effect / Mix Effect Volume effect in a table.

it's well calculated lini by line but i want the total to be the sum of my line instead of recalculating my affect on the total.

 

Capture2.PNG

I want the total line to be -1832 / +2254 / -13139

 

How can I do that??

 

Thank you,

 

Regards, Simon

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Simondeb ,

You have to do something like this

sumx(summarize(Table,Table[Area],table[Sub Area],"_for",[Measure]),[_for])

 

Sub Area is there second row(Group by) in table

Measure the one you looking to correct the calculation

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

3 REPLIES 3
v-eachen-msft
Community Support
Community Support

Hi @Simondeb ,

 

You could use ISINSCOPE() fcuntion to custom your total row.

Measure = 
IF(ISINSCOPE('Table'[Areas]),Your original formula,Your new formula)

 

Community Support Team _ Eads
If this post helps, then please consider Accept it as the solution to help the other members find it.
amitchandak
Super User
Super User

@Simondeb ,

You have to do something like this

sumx(summarize(Table,Table[Area],table[Sub Area],"_for",[Measure]),[_for])

 

Sub Area is there second row(Group by) in table

Measure the one you looking to correct the calculation

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

It works perfectly, thanks 🙂

 

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