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

Dynamic slicer

Hi,

 

I have a slicer based on one of the dimension table column , I Have a two different Dax function ( measure )  which are coming from same fact table.

I would like to show the different measures based on the slicer selections. Please refer  the below sample .

 

I would like to replace the measure based on the slicer selection . let’s say ( as per below ex) if user selected the slicer as “Active ” the KPI should show only “count of Ac_Cust_ID” same way if user selected “Inactive ” excepting to display “count of Cust_ID”.   

 

I gone thought couple of Tech notes but seems to those are based on the Measure as a slicer.. here I would like to use slicer based on the DIM table column .

 

What is the best way to handle this ? 

 

 Sample data.jpg

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Create a separate table with your SlicerSelection. This table should not be related to any other table.  Then create the measures you want to use

Active = CALCULATE( [All], Table1[Ac_Cust_ID] <> blank())

All = COUNTROWS( Table1 )

Inactive = [All] - [Active]

Then use this measure in your KPI:

Selected Value = 
SWITCH( 
    SELECTEDVALUE(SlicerSelection[Selection]),
    "Active", [Active],
    "All", [All],
    "Inactive", [Inactive],
    "Please Only Select One"
)

Switch measure.png

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Create a separate table with your SlicerSelection. This table should not be related to any other table.  Then create the measures you want to use

Active = CALCULATE( [All], Table1[Ac_Cust_ID] <> blank())

All = COUNTROWS( Table1 )

Inactive = [All] - [Active]

Then use this measure in your KPI:

Selected Value = 
SWITCH( 
    SELECTEDVALUE(SlicerSelection[Selection]),
    "Active", [Active],
    "All", [All],
    "Inactive", [Inactive],
    "Please Only Select One"
)

Switch measure.png

Anonymous
Not applicable

Can you pelase share your PBIX file if possible. 

Anonymous
Not applicable

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.