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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
Mariska123
Frequent Visitor

Calculate date difference

Hi Community,

 

I'm trying to calculate the date difference between the bold dates:

 

Client_NRSit_NRMutationInputStart DateEnd Date
11NW1-3-20151-4-201528-2-2016
12SC3-6-20151-3-2016 

 

I tried different DAX-formulas, but I cannot get it right. Is there somebody here who can help me?

 

 

5 REPLIES 5
Phil_Seamark
Microsoft Employee
Microsoft Employee

HI @Mariska123

 

Is the value you want to calculate always between two records with consecutive Sit_NR numbers?


To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

Hi @Phil_Seamark,

 

Yes, that's right. The date I want to create is the difference between the startdate of mutation = NW and the inputdate of the mutation = SC

Are there always just 2 rows, or are there subsequent SC rows that you would also like a DATEDIFF calculated for?


To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

The mutation column can have up to 6 different values. The client will always hav the NW mutation, but not necessarily one of the others. I only want to calculate the date difference if both mutations NW and SC are available for the client. 

try this measure

 

Days Difference = 
var y = calculate(max(Dt[Start Date]), Filter(ALLSELECTED(Dt), Dt[Sit_NR] < max( Dt[Sit_NR] )))
return   datediff(y, MAX(Dt[Input]), DAY)


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
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.