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.
Hi,
I need to calculate the date from the end of a contract depending on the slicer chosen.
I have a table with contracts with start and end dates.
It has a relationship with a date table.
I need to calculate the number of months left to the contract end date depending on the months selected in the slicer (it can be multiple months but the months will be on the X-axis in the matrix)
Which formula can I use?
Solved! Go to Solution.
Hi @Anonymous
please try
=
VAR CurrentDate =
MAX ( 'Date'[Date] )
RETURN
VAR FullTable =
CALCULATETABLE ( TableName, REMOVEFILTERS ( 'Date' ) )
RETURN
SUMX (
FullTable,
IF (
TableName[End Date] <= CurrentDate,
DATEDIFF ( TableName[End Date], CurrentDate, DAY )
)
)
Hi @Anonymous
please try
=
VAR CurrentDate =
MAX ( 'Date'[Date] )
RETURN
VAR FullTable =
CALCULATETABLE ( TableName, REMOVEFILTERS ( 'Date' ) )
RETURN
SUMX (
FullTable,
IF (
TableName[End Date] <= CurrentDate,
DATEDIFF ( TableName[End Date], CurrentDate, DAY )
)
)