Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
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)
Solved! Go to Solution.
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:
Go to "Modeling" Tab in Power BI Desktop.
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
Proud to be a 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
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:
Go to "Modeling" Tab in Power BI Desktop.
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
Proud to be a Super User! | |
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 53 | |
| 52 | |
| 39 | |
| 15 | |
| 14 |
| User | Count |
|---|---|
| 94 | |
| 81 | |
| 34 | |
| 29 | |
| 25 |