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
krrish116
Resolver II
Resolver II

Calculate Date difference of two dates in two different tables.

Hi @amitchandak 

I have 4 tables

Date Table -->which it contains Date, Year, Month-Year, Quarter-Year

Product Table --> which it contains Date, Product Value, Product ID

Customer Table --> which it contains Date, Product ID, Customer Name.

I created Product ID Master Table 

Product ID Master = DISTINCT(
UNION(
VALUES('Customer'[Product ID]),
VALUES('Product'[Product IDNotification No.])))
 
Now the Relationships are from Date table to Customer & Product table with one to many for Date Column
Product ID Master Table to Customer & Product table with many to many for Product ID Column.
 
The Problem is now i have to calculate the DateDiff of two dates in two tables.
I created a column
Diff = DATEDIFF(Product[Date],MAXX(RELATEDTABLE('Customer'), 'Customer'[Date]),DAY)
 
but it is not working..
please help me in sort out this.
 
Thanks,
Krish...
3 ACCEPTED SOLUTIONS
Greg_Deckler
Super User
Super User

@krrish116 Sorry, having trouble following, can you post sample data as text and expected output? Also, an image of the relationships would be very helpful.


Check if your issue is a common issue listed here: https://community.powerbi.com/t5/Community-Blog/Before-You-Post-Read-This/ba-p/1116882

Also, please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490

The most important parts are:
1. Sample data as text, use the table tool in the editing bar
2. Expected output from sample data
3. Explanation in words of how to get from 1. to 2.


@ 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!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

v-angzheng-msft
Community Support
Community Support

Hi, @krrish116 

 

Try the formula below:

Diff =
DATEDIFF (
    'Product'[Date],
    MAXX (
        FILTER ( 'Customer', 'Customer'[Product ID] = 'Product'[Product ID] ),
        'Customer'[Date]
    ),
    DAY
)

Or, please share your sample pbix file's link here, then I can try to look into it to come up with a more accurate formula.

 

 

 

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

View solution in original post

Hi,

Its working fine Thanks.

-Krish...

View solution in original post

3 REPLIES 3
v-angzheng-msft
Community Support
Community Support

Hi, @krrish116 

 

Try the formula below:

Diff =
DATEDIFF (
    'Product'[Date],
    MAXX (
        FILTER ( 'Customer', 'Customer'[Product ID] = 'Product'[Product ID] ),
        'Customer'[Date]
    ),
    DAY
)

Or, please share your sample pbix file's link here, then I can try to look into it to come up with a more accurate formula.

 

 

 

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

Hi,

Its working fine Thanks.

-Krish...

Greg_Deckler
Super User
Super User

@krrish116 Sorry, having trouble following, can you post sample data as text and expected output? Also, an image of the relationships would be very helpful.


Check if your issue is a common issue listed here: https://community.powerbi.com/t5/Community-Blog/Before-You-Post-Read-This/ba-p/1116882

Also, please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490

The most important parts are:
1. Sample data as text, use the table tool in the editing bar
2. Expected output from sample data
3. Explanation in words of how to get from 1. to 2.


@ 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!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

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.