Power BI DAX: SUMMARIZE, SUM
SalesSummary =
SUMMARIZE ( sales, Date[Year], "Sales", SUM ( Sales[Sale] ) )
The SUMMARIZE function in DAX is a tool for creating summary tables. It allows you to group data by one or more columns and then apply aggregate functions like SUM, AVERAGE...
hashnotes.hashnode.dev2 min read