Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
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 |
11/9 | Chicago | Small | 754 |
11/7 | Miami | Large | 234 |
11/5 | Los Angeles | Medium | 567 |
11/5 | Miami | Small | 125 |
11/6 | Chicago | Large | 300 |
11/6 | Los Angeles | Large | 409 |
11/6 | Los Angeles | Small | 512 |
I want to summarize the data in a new table to total the units by date and location. The unit type can be ignored.
Solved! Go to Solution.
Hi, @LCook
Table 2 =
ADDCOLUMNS(
SUMMARIZE('Table (4)','Table (4)'[Date],'Table (4)'[Location]),
"total unit",
CALCULATE(SUM('Table (4)'[Outbound Units]))
)
try below
Thank you! This worked! I think I know where I was originally going wrong now.
Hi @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] ) )
)
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. Appreciate your Kudos.
Check out my latest demo report in the data story gallery.
Stand with Ukraine!
Here are official ways you can support Ukraine financially (accounts with multiple currencies):
1) Support the Armed Forces of Ukraine: https://bank.gov.ua/ua/about/support-the-armed-forces
2) Come Back Alive foundation: https://www.comebackalive.in.ua/
Thank you!
Hi, @LCook
Table 2 =
ADDCOLUMNS(
SUMMARIZE('Table (4)','Table (4)'[Date],'Table (4)'[Location]),
"total unit",
CALCULATE(SUM('Table (4)'[Outbound Units]))
)
try below
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.