The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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 )
)
User | Count |
---|---|
27 | |
12 | |
8 | |
8 | |
5 |
User | Count |
---|---|
31 | |
15 | |
12 | |
7 | |
6 |