Forum Discussion
Anonymous
7 years agoNot applicable
Calculate table - aggragation
I need to create an aggragated table based on a table within my Power BI app. Basically I have the following fields in the base tablein my Power BI app: Company Revenue Sale Date I want t...
LivioLanzo
Solution Sage
7 years agoAnonymous
=
SUMMARIZECOLUMNS(
Sales[Company],
"SaleAmount", SUM( Sales[Revenue] ),
"LastDate", MAX( Sales[Sale Date] )
)Anonymous
7 years agoNot applicable
Awesome Thanks! So "SUMMARIZECOLUMNS" has the same effect as "CALCULATETABLE" - either of them can be used to create a new table from a current table in your Power BI app?