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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
Anonymous
Not applicable

Calculating the difference between Dates stored across different records in the same table

Hello All,

 

We have a sales history Table associated with the Opportunity Table. (1 Opportunity with multiple Sales History)

The Sales History table last has a modified date and Status date. I'm trying to find a solution to get the difference between the modified date based on the status Date.

 

 

 

Example

 

Opportunity: SampleA

 

SalesHistory Table

 

Record   Modified            Status

ABC       12 Nov 2019       Open

BCD        14 Nov 2019      Progress

EFG         17 Nov 2019       In Review

HIJ       19 Nov 2019        Closed

 

As per my understanding, the calculated fields can be used at the record level and not at multiple record instances.

Could you please let me know if you have a solution for the same.

3 REPLIES 3
Anonymous
Not applicable

Group on the field that allows the sales history table to merge with the opportunity table. The code below shows the grouping with a sample table in Excel as the sales history table.

 

let
    Source = Excel.CurrentWorkbook(){[Name="SalesHistory"]}[Content],
     #"Grouped Rows" = Table.Group(Source, {"Order"}, {{"Modified", each List.Max([Modified]), type datetime}})
in
    #"Grouped Rows"

 

 

Greg_Deckler
Super User
Super User

Assuming that there is some sort of relationship that ties the two tables together, you could use a column in your Opportunity table something like:

 

 

Days = MAXX(RELATEDTABLE('SalesHistory'),[Modified]) - MINX(RELATEDTABLE('SalesHistory'),[Modified])

 

 

https://docs.microsoft.com/en-us/dax/relatedtable-function-dax



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

Thanks for your reply Greg.
Yes, I can create a column in opportunity. However, I might not be able to use MAXX functions in this scenario.

My challenge is to find the difference between Modified date based on Status(Open, InReview)
Hence MAXX function cannot be used here. Since I'm not dealing with the maximum and minimum value.

 

For example

 

Status was InReview on 17 Nov and Status was open on 12 Nov.
The difference between them ie 5 needs to be calculated and stored in Opportunity.

 

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors