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

Maximum Date Custom Column - Compare 2 dates in different tables

Hi everyone!

 

Trying to get my head around this and not getting very far!

 

I have 2 tables - Problem, and Task.  The two are related via Problem ID.  Each Problem will have multiple tasks.

 

Problem contains:

Problem ID

Problem Last Modified Date

 

Task Contains

Problem ID

Task ID

Task Last Modified Date

 

Each row in Problem is unique, ie one Problem per row.

Tasks will have around 4 rows per problem, each with a potentially different last modified date.

 

What I want to achieve is:

 

Compare the Problem Last Modified date with the Maximum Task Last Modified date.  Whichever is greater gets populated into the custom column within the Problem Table.  Possibly explained this really badly, but hopefully this pic will help illustrate what I mean:

 

PowerBI example.jpg

1 ACCEPTED SOLUTION
Greg_Deckler
Super User
Super User

@silverdale9999 - Should be:

Column =
  VAR __Other = MAXX(RELATEDTABLE('Table2'),[Task Last Modified Date])
RETURN
  MAXX( {[Last Modified Date], __Other },[Value])

@ 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

3 REPLIES 3
Anonymous
Not applicable

Hi,

There might be a better way to do this but at the top of my head this works.

 

Update_Date =

VAR _new = CALCULATE(MAX('TaskTable'[TaskUpdateDate]),RELATEDTABLE(ProblemTable))

Return

if (_new < 'ProblemTable'[ProblemModifiedDate],'ProblemTable'[ProblemModifiedDate],_new)
 

You can add isblank() if you need.

 

Greg_Deckler
Super User
Super User

@silverdale9999 - Should be:

Column =
  VAR __Other = MAXX(RELATEDTABLE('Table2'),[Task Last Modified Date])
RETURN
  MAXX( {[Last Modified Date], __Other },[Value])

@ 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...

That works perfectly ! Thanks so much for taking the time to reply.

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.