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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
vinicius_ramos
Helper III
Helper III

Create a row in the table with the sum

Hello, 

 

I want to do a table, that have a sum of a colunm in the table. For Example:

 

I have this table:

Code Total
1 10
2 20
3 30
4 40
5 50

 

And i try to create a row that have a sum of Total Colunm:

 

Code Total
1 10
2 20
3 30
4 40
5 50
1+2+3+4+5 150

 

This is possible to do in DAX or in a power Query?

 

Thanks a lot

1 ACCEPTED SOLUTION

@vinicius_ramos 

Actually it was like this before I edit it after having a 2nd read. Please use

NewTable =
UNION ( Table1, { ( "Total", SUM ( Table[Total] ) ) } )

View solution in original post

4 REPLIES 4
vinicius_ramos
Helper III
Helper III

@tamerj1 

 

Thank you very much!!

tamerj1
Super User
Super User

Hi @vinicius_ramos 
With DAX you can create a new calculated table 

 

NewTable =
UNION ( Table1, { ( SUM ( Table[Code] ), SUM ( Table[Total] ) ) } )

 

 

If you have multiple coulmns in the original table then it needs some changes. 

Hi, @tamerj1 

 

I have a question, if instead of Sum the "Code" column, I wanted to put the name "Total Code". In the code changes " SUM ( Table[Code] )" for what?

 

For Example: 

 

Code Total
1 10
2 20
3 30
4 40
5 50
Total Code 150

 

Do you can help me?

 

Thanks a lot.

@vinicius_ramos 

Actually it was like this before I edit it after having a 2nd read. Please use

NewTable =
UNION ( Table1, { ( "Total", SUM ( Table[Total] ) ) } )

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.