Forum Discussion

StephenRabobank's avatar
StephenRabobank
Frequent Visitor
1 year ago
Solved

Hierarchical Data Visualisation

Hello,   I have a work tracking system (AzDO) so we have Product Backlog Items that have a dependency between them. We are looking to have a simple view of “this PBI links to this(these) PBI(these)...
  • Anonymous's avatar
    Anonymous
    1 year ago

    Hello StephenRabobank ,

     

    The earlier suggestion using ADDCOLUMNS didn’t pull in the dependency details , that was an oversight. Here's the corrected approach, which avoids column name conflicts and gives you a clean, report-ready table.

     

    CombinedTable =
    SELECTCOLUMNS (
        FILTER (
            CROSSJOIN ( PBIs, Dependencies ),
            PBIs[WorkItemID] = Dependencies[WorkItemID]
        ),
        "WorkItemID", PBIs[WorkItemID],
        "State", PBIs[State],
        "TargetDate", PBIs[TargetDate],
        "RelatedWorkItemID", Dependencies[Target_WorkItemID],
        "RelationType", Dependencies[TypeOfRelation]
    )

     

    If this post helps, then please consider Accepting as solution to help the other members find it more quickly, don't forget to give a "Kudos " – I’d truly appreciate it!

     

    Regards,

    B Manikanteswara Reddy