Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
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()
)
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 6 | |
| 3 | |
| 3 | |
| 3 | |
| 2 |