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 i need to make a calculated measure which will present the different between the two dates in the columns above.
any help will be helpful thank you
Solved! Go to Solution.
Hi @Anonymous ,
Try this code to create a measure.
Datediff =
DATEDIFF (
SELECTEDVALUE ( 'TableName'[Netflix Release Date] ),
SELECTEDVALUE ( 'TableName'[Release Date] ),
DAY
)
It will work after you add this measure into a visual.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous Try:
Column = ( [Netflix Release Date] - [Release Date] ) * 1.
Or you can use DATEDIFF

I need it as a measure m
Hi @Anonymous
a bit unusual to have a measure in such cases.
How would you like to use/present the expected visual?
Hi @Anonymous ,
Try this code to create a measure.
Datediff =
DATEDIFF (
SELECTEDVALUE ( 'TableName'[Netflix Release Date] ),
SELECTEDVALUE ( 'TableName'[Release Date] ),
DAY
)
It will work after you add this measure into a visual.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Check out the November 2025 Fabric update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!