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
mtanner
New Member

Sum of column to rows of new table

Hi all

 

Is there a way to create a new table with each row representing the total sum value of the original table's columns?

 

By way of example, Table A is the original table and Table B is the desired outcome. 

 

Table A

Column AColumn BColumn C
126
254
475
531
726
815
272027

 

 

Table B

Column A27
Column B20
Column C27

 

Thanks in advance

1 ACCEPTED SOLUTION
v-yulgu-msft
Employee
Employee

Hi @mtanner,

 

In Query Editor, duplicate the source table TableA first. In the duplicated table, choose ColumnA, ColumnB and ColumnC, click "Unpivot columns" to convert table structure. 

2.PNG3.PNG

 

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
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

3 REPLIES 3
v-yulgu-msft
Employee
Employee

Hi @mtanner,

 

In Query Editor, duplicate the source table TableA first. In the duplicated table, choose ColumnA, ColumnB and ColumnC, click "Unpivot columns" to convert table structure. 

2.PNG3.PNG

 

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

Hi @v-yulgu-msft , can you link the 2 tables. E.g. if it there was a column 4 with cities so that from the calculated table a slicer can pull values if each city?


@v-yulgu-msft wrote:

Hi @mtanner,

 

In Query Editor, duplicate the source table TableA first. In the duplicated table, choose ColumnA, ColumnB and ColumnC, click "Unpivot columns" to convert table structure. 

2.PNG3.PNG

 

Best regards,

Yuliana Gu


 

Zubair_Muhammad
Community Champion
Community Champion

@mtanner 

 

You can use a calculated table from modelling tab as

 

calculated Table =
UNION (
    ROW ( "Column", "ColumnA", "Sum", SUM ( TableA[Column A] ) ),
    ROW ( "Column", "ColumnB", "Sum", SUM ( TableA[Column B] ) )
)

Regards
Zubair

Please try my custom visuals

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