Forum Discussion

LuITS's avatar
LuITS
Helper II
1 year ago
Solved

Visualize Power BI Object Dependences (Dataflows, Reports) in Visual

Hello,   i have created a Worksapce with lots of dataflows and reports. Sometimes Dataflows use other Dataflows as Input, and Reports of Corse use other Reports aswell.   I want to viusalice the ...
  • v-lgarikapat's avatar
    v-lgarikapat
    1 year ago

    Hi LuITS ,

     

    Thanks again for the feedback I completely understand what you're aiming for: a clear flowchart that shows all input dependencies recursively up to the source when selecting any given object.

    Your right visuals like the Force-Directed Graph or Sankey Diagram alone don’t natively support tracing multiple dependency levels unless we reshape the data model.

    To solve this, I implemented a solution that

    1.Recursively expands all inputs for each object (not just direct links)

    2.Converts that into a structure usable in Sankey or similar visuals

    3.Let’s you filter on a single object and see all its upstream dependencies in one clear flow

    So now, for example, if you select Report1, the visual shows not just Flow4, but also Flow1, Flow2, and SourceSyst all the way back to the source.

    This is done by preprocessing the dependency table using Power Query to generate a complete flattened lineage, which makes the visualization clean and accurate.

    For reference

    Solved: Recursive Function in Power Query - Microsoft Fabric Community

    Solved: Project dependency visual? - Microsoft Fabric Community

    Solved: Multi-level sankey query - creating supporting vis... - Microsoft Fabric Community

    If you are still encountering any challenges, we would be happy to assist you further

    BestRegards,

    Lakshmi Narayana