Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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:
Solved! Go to Solution.
@silverdale9999 - Should be:
Column =
VAR __Other = MAXX(RELATEDTABLE('Table2'),[Task Last Modified Date])
RETURN
MAXX( {[Last Modified Date], __Other },[Value])
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
You can add isblank() if you need.
@silverdale9999 - Should be:
Column =
VAR __Other = MAXX(RELATEDTABLE('Table2'),[Task Last Modified Date])
RETURN
MAXX( {[Last Modified Date], __Other },[Value])
That works perfectly ! Thanks so much for taking the time to reply.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 97 | |
| 73 | |
| 50 | |
| 47 | |
| 44 |