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
asta
Regular Visitor

How do i calculate sum of three rows for each rows with different values

How do i calculate sum of three rows for each rows for exampple TableA(ColumnA+ColumnB+Column C) in New Calculated Column D i want to show the sum like given below? Please help!

 

I am getting the same values for all the rows? I want the result as Column D which is total of col a, b and c.

 

A  B  C      D
1  1  0       2 ( Sum of A+B+C as 1+1+0)
0  1  0       1
1  1  1       3

1 ACCEPTED SOLUTION
v-haibl-msft
Employee
Employee

@asta

 

Just try like below.

Column D =
TableA[A] + TableA[B] + TableA[C]

How do i calculate sum of three rows for each rows with different values_1.jpg

 

Best Regards,

Herbert

View solution in original post

5 REPLIES 5
v-haibl-msft
Employee
Employee

@asta

 

Just try like below.

Column D =
TableA[A] + TableA[B] + TableA[C]

How do i calculate sum of three rows for each rows with different values_1.jpg

 

Best Regards,

Herbert

Yeah that was pretty easy like this..it did work !

@asta

 

If you have got your problem solved, you could mark the right answer as solution to close this thread. Smiley Happy

 

Best Regards,

Herbert

Vvelarde
Community Champion
Community Champion

hi @asta

 

In a Calculated Column:

 

SumABC = CALCULATE(SUMX(Tabla1,Tabla1[A]+Tabla1[B]+Tabla1[C]))




Lima - Peru
CheenuSing
Community Champion
Community Champion

Hi @asta

 

Try the folliwng using sumx to iterate over each row.

 

ColumnD=sumx(Yourtable, (cola+colb+colc))

 

If this works please accept this as solution and also give KUDOS.

 

Cheers

 

CheenuSing

 

Did I answer your question? Mark my post as a solution and also give KUDOS !

Proud to be a Datanaut!

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