Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
Anonymous
Not applicable

Dynamic datediff

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?

1 ACCEPTED SOLUTION
tamerj1
Super User
Super User

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 )
            )
        )

View solution in original post

1 REPLY 1
tamerj1
Super User
Super User

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 )
            )
        )

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.