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
maruthi
Frequent Visitor

Display dynamic measures based on slicer/filter seelctions

Dear All,

 

I have bar graph where it should display different measures based on filter/slicer selection. 

 

Data model looks like:

 

1. Dimension_Region

2. Fact_sales

 

Slicer Data which comes from Dimension_Region and looks like below:

--> Select All

--> Asia

--> America

--> Europe

 

case-1: When "Select All" option selected in the filters/slicers, then it should display "Measure1".

case-2: When remaining option selected in the filters/slicers, then it should display "Measure2"

 

 

Please help me how to write DAX expression to implement? Thanks in advance.

 

Kind Regards,

Maruthi

 

 

 

1 ACCEPTED SOLUTION
vega
Resolver III
Resolver III

You'd want to do something like this:

 

Measure :=
IF(
    ISFILTERED(Dimension_Region),
    [Measure2],
    [Measure1]
)

Where Dimension_Region is replaced with the column that the slicer is getting its data.

View solution in original post

4 REPLIES 4
vega
Resolver III
Resolver III

You'd want to do something like this:

 

Measure :=
IF(
    ISFILTERED(Dimension_Region),
    [Measure2],
    [Measure1]
)

Where Dimension_Region is replaced with the column that the slicer is getting its data.

Will this also work on a table/matrix visual?

maruthi
Frequent Visitor

Hi vega,

I tried but no luck 😞

Error.JPG

 

Above is the error I got it.

You are missing a closing parenthesis after [regions]

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.