Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
I have the report below which lists projects of different Project Life Cycle Phase.
I need to display each the maximum Due date for Project Life Cycle Phase relating to each project
Ive tried
@talespin @danextian @tamerj1 @amitchandak
So based on the above I would like to see:-
Mission Attract and Retain Discovery & Design and the Maximum date for that Group
Mission Attract and Retain Closure and the Maximum date for that Group
(please ignore date format as these will be in date format)
Can someone please advise how I could approach this please?
Solved! Go to Solution.
Hi @spandy34 ,
try this:
CALCULATE (
MAX ( 'tasks main'[due date] ),
ALLEXCEPT (
'tasks main',
'tasks main'[mission],
'tasks main'[project],
'tasks main'[life cycle phase]
)
)
hi @spandy34
Replace ORD_ID and MLSTN with the fields you want to get the maximum date for. Similarly you can add more fields.
In CALCULATE , I am removing all filters and adding only those fielters for which I want to get the maximum date.
This is a Calculated Column
------------------------------------
That has worked too! Thank you so much for your help. Much appreciated.
hi @spandy34
Replace ORD_ID and MLSTN with the fields you want to get the maximum date for. Similarly you can add more fields.
In CALCULATE , I am removing all filters and adding only those fielters for which I want to get the maximum date.
This is a Calculated Column
------------------------------------
That is brilliant ! Thank you for your help. I really appreciate it.
Hi @spandy34 ,
try this:
CALCULATE (
MAX ( 'tasks main'[due date] ),
ALLEXCEPT (
'tasks main',
'tasks main'[mission],
'tasks main'[project],
'tasks main'[life cycle phase]
)
)
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 61 | |
| 54 | |
| 41 | |
| 17 | |
| 13 |
| User | Count |
|---|---|
| 97 | |
| 83 | |
| 35 | |
| 29 | |
| 25 |