Forum Discussion

keatonbeyer's avatar
keatonbeyer
Frequent Visitor
10 months ago
Solved

Or Slicing between multiple tables

I am working with project data where I want to see all projects if a person is either managing a project or working on the project and I want to see it by their manager.   Slicer: Manager names   ...
  • sevenhills's avatar
    10 months ago

    Create unifed dimension table

     

    Steps: 

    1. Create a combined Owner table as in Power Query (or DAX if preferred. below steps are PQ).
         ... append project owner column from the project table and task owner column from the task table.

         ... remove duplicates 

    2. name this table say "Person or Person dim" of your choice. and say column as "Name" Use it as your slicer source.

    3. Create relationsips

           ... Connect Person Dim[Name] to Project[Project Owner] (one-to-many).

           ... Connect PersonDim[Name] to Task[Task Owner] (one-to-many).

    4. Build visuals (remember for slicer use this new table)