March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch 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 )
)
)
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
109 | |
73 | |
54 | |
52 | |
44 |
User | Count |
---|---|
161 | |
112 | |
67 | |
60 | |
50 |