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

Get certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now

Reply
aliasch
New Member

Report Filter Switches Which Measure is Displayed

Hello!

I have a use case where I have two measures that need to be displayed in a visual. However, each measure only applies to certain dimension values, so I need the visual to switch measures depending on a report filter. I currently have this DAX formula. However, if a filter value doesn't exist in the prior year, then it uses the wrong measure for the specific line item and still uses the correct measure for everything else.

 

This is my measure that switches.

Measure1 or Measure2 =

SWITCH(

    TRUE(),

    [Filter User Selection] = "A", Measure1],

    [Filter User Selection] = "B", [Measure1],

    [Filter User Selection] = "C", [Measure1],

    [Filter User Selection] = "D", [Measure1],

    [Filter User Selection] = "E", [Measure2],

    ISBLANK([Filter User Selection]), [Measure1]

)

 

This is my report filter.

Filter User Selection = SELECTEDVALUE('Table'[Field])

 

Year over year, the highlighted values are actually using Measure2 and everything else is using Measure1. When I looked at the data, it was because that group didn't have any records that matched [Filter User Selection] = "A", for example, that was selected in the report filter, but it did have [Filter User Selection] = "E". Is there a way to prevent that?

 

aliasch_0-1730816959400.png

 

1 ACCEPTED SOLUTION
v-tangjie-msft
Community Support
Community Support

Hi @aliasch ,

 

Thanks Sahir_Maharaj  for the quick reply. I have some other thoughts to add:

(1) We need two tables. We use the table as a slicer table and table 2 as a fact table with data such as year. Note that there is no model relationship between the two tables.

vtangjiemsft_1-1730858868085.png

vtangjiemsft_2-1730858896324.png

(2) We can create a measure.

Measure = IF(SELECTEDVALUE('Table'[Field])="E",[Measure2],[Measure1])

(3) Then the result is as follows.

Select E only:

vtangjiemsft_3-1730859087306.png

Select other only:

vtangjiemsft_4-1730859151094.png

All or None or Multiple Choice:

vtangjiemsft_5-1730859200738.png

vtangjiemsft_6-1730859220797.png

vtangjiemsft_7-1730859247382.png

 

If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. Thank you.

 

Best Regards,

Neeko Tang

If this post  helps, then please consider Accept it as the solution  to help the other members find it more quickly. 

View solution in original post

4 REPLIES 4
v-tangjie-msft
Community Support
Community Support

Hi @aliasch ,

 

Thanks Sahir_Maharaj  for the quick reply. I have some other thoughts to add:

(1) We need two tables. We use the table as a slicer table and table 2 as a fact table with data such as year. Note that there is no model relationship between the two tables.

vtangjiemsft_1-1730858868085.png

vtangjiemsft_2-1730858896324.png

(2) We can create a measure.

Measure = IF(SELECTEDVALUE('Table'[Field])="E",[Measure2],[Measure1])

(3) Then the result is as follows.

Select E only:

vtangjiemsft_3-1730859087306.png

Select other only:

vtangjiemsft_4-1730859151094.png

All or None or Multiple Choice:

vtangjiemsft_5-1730859200738.png

vtangjiemsft_6-1730859220797.png

vtangjiemsft_7-1730859247382.png

 

If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. Thank you.

 

Best Regards,

Neeko Tang

If this post  helps, then please consider Accept it as the solution  to help the other members find it more quickly. 

VahidDM
Super User
Super User

Hi @aliasch 

 

Try this:
Cretae a measure:

Filter User Selection =
SELECTEDVALUE( ALLSELECTED('Table'[Field]) )

 

and then this measure:

Measure1 or Measure2 =
VAR FilterSelection = [Filter User Selection]
RETURN
SWITCH(
    TRUE(),
    ISBLANK(FilterSelection), [Measure1],
    FilterSelection = "A", [Measure1],
    FilterSelection = "B", [Measure1],
    FilterSelection = "C", [Measure1],
    FilterSelection = "D", [Measure1],
    FilterSelection = "E", [Measure2],
    [Measure1]  // Default case if none of the conditions match
)

 

Since "A" to "D" all use Measure1, you can simplify the conditions:

Measure1 or Measure2 =
VAR FilterSelection = [Filter User Selection]
RETURN
IF(
    ISBLANK(FilterSelection),
    [Measure1],
    IF(
        FilterSelection = "E",
        [Measure2],
        [Measure1]  // For all other cases
    )
)

 

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.

Appreciate your Kudos!! 

 

LinkedIn|Twitter|Blog |YouTube 

Sahir_Maharaj
Super User
Super User

Hello @aliasch,

 

Can you please try this approach:

Measure1_or_Measure2 =
SWITCH(
    TRUE(),
    
    [Filter User Selection] = "A" && NOT(ISBLANK(Measure1)), Measure1,
    [Filter User Selection] = "B" && NOT(ISBLANK(Measure1)), Measure1,
    [Filter User Selection] = "C" && NOT(ISBLANK(Measure1)), Measure1,
    [Filter User Selection] = "D" && NOT(ISBLANK(Measure1)), Measure1,
    [Filter User Selection] = "E" && NOT(ISBLANK(Measure2)), Measure2,
    
    ISBLANK([Filter User Selection]) || ISBLANK(Measure1), Measure1,
    
    Measure2
)

Hope this helps 🙂


Did I answer your question? Mark my post as a solution, this will help others!

If my response(s) assisted you in any way, don't forget to drop me a "Kudos" 🙂

Kind Regards,
Sahir Maharaj
Data Scientist | Data Engineer | Data Analyst | AI Engineer
P.S. Want me to build your Power BI solution? (Yes, its FREE!)
➤ Lets connect on LinkedIn: Join my network of 15K+ professionals
➤ Join my free newsletter: Data Driven: From 0 to 100
➤ Website: https://sahirmaharaj.com
➤ Email: sahir@sahirmaharaj.com
➤ Want me to build your Power BI solution? Lets chat about how I can assist!
➤ Join my Medium community of 30K readers! Sharing my knowledge about data science and artificial intelligence
➤ Explore my latest project (350K+ views): Wordlit.net
➤ 100+ FREE Power BI Themes: Download Now
LinkedIn Top Voice in Artificial Intelligence, Data Science and Machine Learning

Unfortunately, that didn't work 😞 I had the same issue where one filter value that had Measure 1 this year but not last year show up with Measure 2. Essentially I just need [Filter User Selection] = "E" to show Measure 2 and the rest, including all filter combinations, to show Measure 1. Even with all values selected, I want to show Measure 1. It's just when [Filter User Selection] = "E" only, then I need Measure 2. Maybe there's a different route entirely?

Helpful resources

Announcements
November Carousel

Fabric Community Update - November 2024

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

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.

Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

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