Forum Discussion
Create New Table with Existing Measure
- 1 year ago
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
-
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