I’m working on a Power BI model with the following relationships:
DimManager is connected to DimProjects through a direct relationship (via ManagerID). DimProjects contains project-level details and is connected to DimTasks through ProjectID. DimTasks contains task-level details, including TaskID and ProjectID.
Problem: When I add a slicer for ManagerName from DimManager, it filters the DimProjects table as expected. However, it does not propagate to the DimTasks table, meaning that the tasks shown are not filtered by the selected manager.
Relationships in the Model: DimManager → DimProjects (Active, via ManagerID). DimProjects → DimTasks (Inactive, via ProjectID).
Expected Behavior: If I select "Alice" in the slicer, only Task 1 (associated with Project A) should appear in the tasks table.
Question:
- Why does the filter on ManagerName fail to propagate to the DimTasks table?
- How can I fix this so that filtering on ManagerName in the slicer filters the tasks table correctly?

