Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hello,
I'm looking for a measure for the follow issue.
I need the difference of total days between de exparation date and the selected date in the slicer.
In the model there's isn't an relationship between the tabels.
Solved! Go to Solution.
Try this MEASURE
=
DATEDIFF (
SELECTEDVALUE ( Calendar[Date] ),
SELECTEDVALUE ( Invoices[ExperationDate] ),
DAY
)
Try this MEASURE
=
DATEDIFF (
SELECTEDVALUE ( Calendar[Date] ),
SELECTEDVALUE ( Invoices[ExperationDate] ),
DAY
)
or this one
=
VAR Start_Date =
MIN (
SELECTEDVALUE ( Calendar[Date] ),
SELECTEDVALUE ( Invoices[ExperationDate] )
)
VAR End_Date =
MAX (
SELECTEDVALUE ( Calendar[Date] ),
SELECTEDVALUE ( Invoices[ExperationDate] )
)
RETURN
DATEDIFF ( Start_Date, End_Date, DAY )
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.