Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Tricky Slicer Situation

I have a table that looks something like this:

1.PNG

 

A company can have 2 managers. They can be the same person, have only one manager, or mix and match managers. I'm currently stuck in a situation where I'm using 2 slicers for each manager column. What I'm trying to figure out is how to have that in one slicer. So the slicer would just be:


Fred

Lisa

Bob

Tim

 

So if for instance I select Fred, these are the rows and revenue totals that would be returned:

1.PNG

 

So anywhere where Fred's name appears is what I would be looking for.

 

This is rather tricky because what I'm also expecting in the end is for the slicer to control everything else on the page. I have other tiles that show how many clients each person manages, what their retention is, etc. and right now I have 2 tables for everything which doesn't help because Fred would have 1 revenue total in one table and 1 revenue total in the other table without a way to sum both of those values to get an overall for Fred. Is this possible to set up?

1 ACCEPTED SOLUTION
danextian
Super User
Super User

Hi @Anonymous

 

There are two approaches I can think  of:

 

  1.  In the query editor,
    • add an index column to your original fact table
    • right click on the original query and click reference
    • from the new query, remove all other columns except the index and managers column
    • select index column, right click and click unpivot other columns
    • load the new new and old queries into the model
    • create a bidrectional relationship between the two tables in your model with index as the relationship key
    • use the values column from the new table in the slicer
  2.  Using DAX
    • create a disconnected calculated table which is the union of  managers column (disonnected = must have no relationship with your fact table)
      ManagersTable =
      VAR M1 =
          SELECTCOLUMNS ( Table, "Manager", Table[Manager1] )
      VAR M2 =
          SELECTCOLUMNS ( Table, "Manager", Table[Manager2] )
      RETURN
          UNION ( M1, M2 )
    • create a measure to be used as a visual filter
      ManagerFilter =
      VAR Manager =
          SELECTEDVALUE ( ManagersTable[Manager] )
      RETURN
          IF (
              ISFILTERED ( ManagersTable[Manager] ),
              CALCULATE ( COUNTA ( Table[Name] ), Table[Manger1] = Manager )
                  + CALCULATE ( COUNTA ( Table[Name] ), Table[Manger2] = Manager ),
              1 //return 1 if no item in ManagersTable[Manager] column is selected
      )
    • use the manager column from the calculated table in the slicer









Did I answer your question? Mark my post as a solution!


Proud to be a Super User!









"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.

View solution in original post

4 REPLIES 4
msornakumar
Advocate III
Advocate III

Hi,

 

  Can you please try the below approach of creating two measures instead of two tables ? From my testing it gives proper results as expected. Not sure it will cater all your scenarios. Please let us know.

 

RelationshipRelationship

Revenue Manager1 = CALCULATE(SUM(Data[Revenue])) 

Revenue manager2 = CALCULATE(SUM(Data[Revenue]),USERELATIONSHIP(Manager[Manager],Data[Manager2]) )

Total Revenue = if(ISBLANK([Revenue Manager1]),[Revenue manager2],[Revenue Manager1])

 

Output.png 

danextian
Super User
Super User

Hi @Anonymous

 

There are two approaches I can think  of:

 

  1.  In the query editor,
    • add an index column to your original fact table
    • right click on the original query and click reference
    • from the new query, remove all other columns except the index and managers column
    • select index column, right click and click unpivot other columns
    • load the new new and old queries into the model
    • create a bidrectional relationship between the two tables in your model with index as the relationship key
    • use the values column from the new table in the slicer
  2.  Using DAX
    • create a disconnected calculated table which is the union of  managers column (disonnected = must have no relationship with your fact table)
      ManagersTable =
      VAR M1 =
          SELECTCOLUMNS ( Table, "Manager", Table[Manager1] )
      VAR M2 =
          SELECTCOLUMNS ( Table, "Manager", Table[Manager2] )
      RETURN
          UNION ( M1, M2 )
    • create a measure to be used as a visual filter
      ManagerFilter =
      VAR Manager =
          SELECTEDVALUE ( ManagersTable[Manager] )
      RETURN
          IF (
              ISFILTERED ( ManagersTable[Manager] ),
              CALCULATE ( COUNTA ( Table[Name] ), Table[Manger1] = Manager )
                  + CALCULATE ( COUNTA ( Table[Name] ), Table[Manger2] = Manager ),
              1 //return 1 if no item in ManagersTable[Manager] column is selected
      )
    • use the manager column from the calculated table in the slicer









Did I answer your question? Mark my post as a solution!


Proud to be a Super User!









"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.
Anonymous
Not applicable

@danextian I have everything built but I'm confused on how to apply the measure. Am I applying it to the table and making sure it's set to 1 or 0?

Select the visual you want to be filtered by the new measure. In filters pane, add the measure to Visual filters and set it to greatee than or equal to one as the measure will return one or more if the new column is filleted or either of the two calculates returns a value. It is important that the new table is disconnected.









Did I answer your question? Mark my post as a solution!


Proud to be a Super User!









"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.