Forum Discussion

amrendra's avatar
amrendra
Regular Visitor
4 years ago
Solved

Filtering based on subitems

Hello, I am trying to visualize JIRA work log using PowerBI. I have a table containing user, issue, logged hours, and date. This table can contain  A user can log hours for multiple issues An iss...
  • AllisonKennedy's avatar
    AllisonKennedy
    4 years ago

    amrendra  Aha, I see your dilemna now. Because you want to cross-filter across visuals, you have a filter on User and Course. There's not really a way to clear the filter on User only from the visual you click while still keeping the User filter from the visual you want updating. So, you can copy the User table, you your example we'll call it Employee Associated, and then use that in the second visual. Now we can clear the filter from Employee without clearing the filter from Employee Associated with a DAX Measure:

     

    Result Associated =

    CALCULATE( SUM( Training[Result ]), ALL(Employee))

     

    Relationships are very important here too: 

     

     

    Desired result:

     

     

     

    See attached pbix below signature.