Jun 30, 2024
Create New Table
Using the Summarize Function
SUMMARIZE()Filter Function
FILTER(SuperStore, SuperStore[Category] = "Furniture")Grouping Dimensions
SuperStore[Segment]SuperStore[Region]Aggregation Functions
SUM(SuperStore[Sales])SUM(SuperStore[Profit])FurnitureSalesAndProfit =
SUMMARIZE(
FILTER(SuperStore, SuperStore[Category] = "Furniture"),
SuperStore[Segment],
SuperStore[Region],
"Total Sales", SUM(SuperStore[Sales]),
"Total Profit", SUM(SuperStore[Profit])
)