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!View all the Fabric Data Days sessions on demand. View schedule
Hi
I have created a calculated table with the following DAX formulae:
Solved! Go to Solution.
Hi @Tomo2709,
From your description, the SUMMARIZE function could do multiple sum in a formula, you could refer to the example code
SUMMARIZE(ResellerSales_USD
, DateTime[CalendarYear]
, ProductCategory[ProductCategoryName]
, "Sales Amount (USD)", SUM(ResellerSales_USD[SalesAmount_USD])
, "Discount Amount (USD)", SUM(ResellerSales_USD[DiscountAmount])
)
in below link:
https://docs.microsoft.com/en-us/dax/summarize-function-dax
Regards,
Daniel He
Hi @Tomo2709,
From your description, the SUMMARIZE function could do multiple sum in a formula, you could refer to the example code
SUMMARIZE(ResellerSales_USD
, DateTime[CalendarYear]
, ProductCategory[ProductCategoryName]
, "Sales Amount (USD)", SUM(ResellerSales_USD[SalesAmount_USD])
, "Discount Amount (USD)", SUM(ResellerSales_USD[DiscountAmount])
)
in below link:
https://docs.microsoft.com/en-us/dax/summarize-function-dax
Regards,
Daniel He
I forgot to name the column for the second sum function thank you for your help. Works perfectly.
Paul
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!