Forum Discussion
LCook
2 years agoFrequent Visitor
Summarize in Power BI
I've tried multiple formulas but cannot get my data to summarize. Example of the data is: Date Location Unit Type Outbound Units 11/9 Miami Small 500 11/9 Chicago Large 625 1...
ERD
Community Champion
2 years agoHi LCook , you want it as a visual or you need a virtual/physical table?
In case of a measure (just add it to the table visual with date and location columns):
units = SUM('Table'[Outbound Units])
A table:
ADDCOLUMNS (
SUMMARIZE ( 'Table', 'Table'[Date], 'Table'[Location] ),
"@units", CALCULATE ( SUM ( 'Table'[Outbound Units] ) )
)