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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply

Max interval of days between two dates on date column

Hi guys,

 

I'm trying to calculate the interval of days between a date value and the last date before that date (doing this to all dates in column), and then show the max value of these intervals.

 

For example:

1. calculate the date intervals between the dates on column:

filipeoliveira_1-1647264937232.png

 

2. and then return the max value from the intervals calculated above (6 days), in a measure.

 

Some idea?

 

Appreciate any help.

1 ACCEPTED SOLUTION
Jihwan_Kim
Super User
Super User

Hi,

Please check the below picture and the attached pbix file.

I added two more rows in the sample in order to check if it works correctly.

 

Picture1.png

 

Expected result measure: =
VAR newtable =
    ADDCOLUMNS (
        Data,
        "@previous",
            CALCULATE (
                CALCULATE (
                    MAX ( Data[DataRef] ),
                    FILTER (
                        ALL ( Data ),
                        Data[DataRef] < VAR currentdataref = MAX ( Data[DataRef] ) RETURN currentdataref
                    )
                )
            )
    )
VAR intervaltable =
    FILTER (
        ADDCOLUMNS ( newtable, "@interval", INT ( Data[DataRef] - [@previous] ) ),
        [@previous] <> BLANK ()
    )
VAR maximuminterval =
    MAXX ( intervaltable, [@interval] )
RETURN
    maximuminterval

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


View solution in original post

3 REPLIES 3
Jihwan_Kim
Super User
Super User

Hi,

Please check the below picture and the attached pbix file.

I added two more rows in the sample in order to check if it works correctly.

 

Picture1.png

 

Expected result measure: =
VAR newtable =
    ADDCOLUMNS (
        Data,
        "@previous",
            CALCULATE (
                CALCULATE (
                    MAX ( Data[DataRef] ),
                    FILTER (
                        ALL ( Data ),
                        Data[DataRef] < VAR currentdataref = MAX ( Data[DataRef] ) RETURN currentdataref
                    )
                )
            )
    )
VAR intervaltable =
    FILTER (
        ADDCOLUMNS ( newtable, "@interval", INT ( Data[DataRef] - [@previous] ) ),
        [@previous] <> BLANK ()
    )
VAR maximuminterval =
    MAXX ( intervaltable, [@interval] )
RETURN
    maximuminterval

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


Thanks! It worked for me.

amitchandak
Super User
Super User

@filipeoliveira , A new column

 

datediff([Dateref], minx(filter(Table, [Dateref] >earlier([Dateref]) ), [DateRef]) , Day)

 

or

 

datediff([Dateref], maxx(filter(Table, [Dateref] <earlier([Dateref]) ), [DateRef]) , Day)

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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