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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hello
I can't find a working solution for my problem.
I have a table named ht_ProjectData with Projects and Phases.
I want a additional column for the "Project Health". It should show the highest value from all Phases related to this Project.
The table looks like this:
| MainProject | TaskName | Health | ProjectType |
| Project A | Project A | - | Project |
| Project A | Phase 1 | 1 | Phase |
| Project A | Phase 2 | 1 | Phase |
| Project A | Phase 3 | 2 | Phase |
| Project B | Project B | - | Project |
| Project B | Phase 1 | 3 | Phase |
| Project B | Phase 2 | 1 | Phase |
| Project B | Phase 3 | 1 | Phase |
At the end it should look like this:
| MainProject | TaskName | Health | ProjectType | MainProjectHealth |
| Project A | Project A | - | Project | 2 |
| Project A | Phase 1 | 1 | Phase | - |
| Project A | Phase 2 | 1 | Phase | - |
| Project A | Phase 3 | 2 | Phase | - |
| Project B | Project B | - | Project | 3 |
| Project B | Phase 1 | 3 | Phase | - |
| Project B | Phase 2 | 1 | Phase | - |
| Project B | Phase 3 | 1 | Phase | - |
I tried this Calculation but it didn't work:
MainProjectHealth = CALCULATE(
MAX(
ht_ProjectData[Health];
FILTER(
ht_ProjectData;
ht_ProjectData[ProjectType] = "Phase" &&
ht_ProjectData[MainProject] = ht_ProjectData[TaskName]
)
)
)
Any suggestions?
Solved! Go to Solution.
I believe:
MainProjectHealth Column =
IF(
[ProjectType] = "Project",
MAXX(
FILTER(
'Table',
[MainProject] = EARLIER([MainProject]) &&
[ProjectType] = "Phase"
),
[Health]
),
BLANK()
)
Hi @Anonymous
Please see the attached file with Power Query solution
I believe:
MainProjectHealth Column =
IF(
[ProjectType] = "Project",
MAXX(
FILTER(
'Table',
[MainProject] = EARLIER([MainProject]) &&
[ProjectType] = "Phase"
),
[Health]
),
BLANK()
)
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 19 | |
| 10 | |
| 9 | |
| 8 | |
| 7 |