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.
After reading many posts on this i'm still having issues with the total for Move-Out SF 2. My row dax works fine but the total is not working. Change SF is a measure of (Sum of All Area - Start SF) and I want to split that between two new measures (Move-In and Move-Out).
Any help is appreciated.
Thanks.
Property Code, same table for both snips.
Please try
Move-Out SF2 =
SUMX (
SUMMARIZE (
'Tenency Data',
'Tenency Data'[Property Code],
'Tenency Data'[Tcode]
),
VAR ChangeSF = [Change SF] RETURN IF ( ChangeSF < 0, ChangeSF )
)
Same result as before:
Please use
Move-Out SF2 =
SUMX (
VALUES ( 'Tenency Data'[Tcode] ),
VAR ChangeSF = [Change SF] RETURN IF ( ChangeSF < 0, ChangeSF )
)