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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
raddy_dee
New Member

Create New Table with Existing Measure

Hello all.

 

I have created some measures in my project which I can successfully display in Table-Visual.

However, how can I replicate this visualised table in a new Table?

Basically what the measure does is to countrows based on certain calculations. Thank you

 

Existing visual
(Table)

Department, Month, Year, Points(measure)

1 ACCEPTED SOLUTION
rajendraongole1
Super User
Super User

Hi @raddy_dee - You can use DAX to create a new calculated table that mirrors the aggregation of your existing table visual. Here's how to approach it:

  1. Go to "Modeling" Tab in Power BI Desktop.

  2. Click on New Table to create a calculated table.

NewTable =
SUMMARIZE(
ExistingTable,
ExistingTable[Department],
ExistingTable[Month],
ExistingTable[Year],
"Points", [Points_Measure]
)

 

These methods should help you replicate the logic and layout of your existing table visual in a new table format. Hope this helps





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





View solution in original post

2 REPLIES 2
Kedar_Pande
Super User
Super User

Create a new table ( Modelling > New Table)

NewTable = 
SUMMARIZECOLUMNS(
OriginalTable[Column1],
OriginalTable[Column2],
"CountRows", [CountRowsMeasure]
)

This creates a summarized table with columns from your original table, along with the result of the measure.

 

If this helped, a Kudos 👍 or Solution mark would be great! 🎉
Cheers,
Kedar
Connect on LinkedIn

rajendraongole1
Super User
Super User

Hi @raddy_dee - You can use DAX to create a new calculated table that mirrors the aggregation of your existing table visual. Here's how to approach it:

  1. Go to "Modeling" Tab in Power BI Desktop.

  2. Click on New Table to create a calculated table.

NewTable =
SUMMARIZE(
ExistingTable,
ExistingTable[Department],
ExistingTable[Month],
ExistingTable[Year],
"Points", [Points_Measure]
)

 

These methods should help you replicate the logic and layout of your existing table visual in a new table format. Hope this helps





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.