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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

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
Microsoft Employee
Microsoft 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
Microsoft Employee
Microsoft 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] ) )
)

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors