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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello everyone!
So, I have this table (fVolume) with information separated by Month_Year and Center (Unidade). A Center belogs to a Region, and a Region can have multiple Centers. I want to calculate the sum of the volume per Month_Year per Region. I was thinking of a calculated column, but it can be a measure too, I don't know... Can you guys help me?
please try
Coluna =
CALCULATE (
SUM ( 'Table'[Volume Mes Corrigido] ),
ALLEXCEPT ( 'Table', 'Table'[Mes_Ano] )
)