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
Anonymous
Not applicable

Help with the Dax measure to compare the dates.

Hello all,

 

Good morning!

I have a table like this :

TT1.PNG

 

I just need to compare the Start dates and the previous end dates and display a result.

Here in this example -

For row number 2 - I would compare Jan 10 and Feb 1(1st end date) and display a result.

For row number 3 - I would compare Jan 10 with Jan 15 and Feb 1(1st and 2nd end date) and display the result.

 

As you can I should compare a start date with the previous end dates.

 

Looking forward to your help.

 

Thanks

1 ACCEPTED SOLUTION
v-eachen-msft
Community Support
Community Support

Hi @Anonymous ,

 

At first, you need to add an index column in the query editor.

2-1.PNG

Then you could create a new column to compare the dates.

Diff =
VAR a =
    CALCULATE (
        FIRSTNONBLANK ( 'Table'[End], 1 ),
        FILTER ( 'Table', 'Table'[Index] = EARLIER ( 'Table'[Index] ) - 1 )
    )
RETURN
    DATEDIFF ( 'Table'[Start], a, DAY )

 

Community Support Team _ Eads
If this post helps, then please consider Accept it as the solution to help the other members find it.

View solution in original post

2 REPLIES 2
v-eachen-msft
Community Support
Community Support

Hi @Anonymous ,

 

At first, you need to add an index column in the query editor.

2-1.PNG

Then you could create a new column to compare the dates.

Diff =
VAR a =
    CALCULATE (
        FIRSTNONBLANK ( 'Table'[End], 1 ),
        FILTER ( 'Table', 'Table'[Index] = EARLIER ( 'Table'[Index] ) - 1 )
    )
RETURN
    DATEDIFF ( 'Table'[Start], a, DAY )

 

Community Support Team _ Eads
If this post helps, then please consider Accept it as the solution to help the other members find it.
parry2k
Super User
Super User

@Anonymous when you said compare, what does that means? What output you want? You probably need to add index column to compare with previous rows but if you provide more details, it will help to get you the solution.



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

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.