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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
Samcooke
Frequent Visitor

Date Diff between two tables

Hi I am a longtime Tableau user that is moving our customer base over to Power Bi. In Tableau one of the key calculations I used was Date Diff using two different tables. Essentially comparing counting days between a start date in one table and an enda date in another. But I am really having trouble replicating this in Power Bi. When I add the query DATEDIFF('Dates Table'[Start Date],'Dates Table'[End Date],MONTH) only the options for the first table appear. The 2nd table doesn't come up at all. Are you only able to compare two dates in a sigle table? Or am I am idiot and doing it wrong? 

3 REPLIES 3
v-yalanwu-msft
Community Support
Community Support

Hi, @Samcooke ;

First of all, if the date is in two tables, is there a relationship between the two tables?
You can try this measure:

measure =
DATEDIFF ( MAX ( 'table1'[date] ), MAX ( 'table2'[date] ), DAY )

If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.

How to upload PBI in Community


Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Greg_Deckler
Super User
Super User

@Samcooke I recommend not using DAX TI functions like DATEDIFF. All you have to do is get your two dates into variables and essentially subtract them like this:

Measure =
  VAR __Date1 = // some DAX to get your date in first table
  VAR __DAte2 = // some DAX to get your date in second table
RETURN
  ( __Date1 - __Date2 ) * 1. // this just makes sure you get a number value back, set your data type to Whole number.

Dates in DAX are a decimal number where the integer portion is the number of days since December 30th, 1899 and the decimal portion is fraction of a day 24/60/60.



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Power BI Cookbook Third Edition (Color)

DAX is easy, CALCULATE makes DAX hard...

Thanks so much for commenting. I am still struggling. How to you get your dates into variables?

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.