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.
sum({<
Apportionment_Category={
'Fixed Assets',
'Inventory/CIP',
'Land'
},
Year_End_Flag = {'2'}
>}Amount)
+sum({<
Apportionment_Category={
'Depreciation',
'Gains/Losses',
'Other Income',
'Payroll',
'Rent/Leases',
'Sales'
},
Year_End_Flag = {'0'}
>}Amount)
SUMX(
FILTER(
'Table',
'Table'[Apportionment_Category] IN {
"Fixed Assets",
"Inventory/CIP",
"Land"
}
&& 'Table'[Year_End_Flag] = "2"
),
'Table'[Amount]
)
+ SUMX(
FILTER(
'Table',
'Table'[Apportionment_Category] IN {
"Depreciation",
"Gains/Losses",
"Other Income",
"Payroll",
"Rent/Leases",
"Sales"
}
&& 'Table'[Year_End_Flag] = "0"
),
'Table'[Amount]
)
Thanks