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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

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
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

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

Top Kudoed Authors