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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi All
I need help on below dax . I want If Contract end Date < 2021 should be marked equal 0. screenshot below
Dax:
Future Relationship = [Total relationship] -[Current Relationship]
Solved! Go to Solution.
Hi @mdaamirkhan
How are you calculating Contract End Date? Is it a column? Measure?
Try this
Future Relationship =
VAR _FR = [Total relationship] -[Current Relationship]
RETURN
IF(YEAR([Contracts end date]) < 2021, 0 , _FR)
Regards
Phil
Proud to be a Super User!
Hi @mdaamirkhan
How are you calculating Contract End Date? Is it a column? Measure?
Try this
Future Relationship =
VAR _FR = [Total relationship] -[Current Relationship]
RETURN
IF(YEAR([Contracts end date]) < 2021, 0 , _FR)
Regards
Phil
Proud to be a Super User!
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.