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

Measure SWITCH with Parameter

Combined Measure = IF( SELECTEDVALUE('Category switch views'[Parameter]) = "Country", [% EE by Country], IF( SELECTEDVALUE('Category switch views'[Parameter]) = "Band", [% EE by Band], BLANK() ) )

This measure will return the measure [% EE by Country] if the selected parameter is "Country", [% EE by Band] if the selected parameter is "Band", and BLANK() otherwise. 


However, the chart does not fetch anything. Should I make any changes. 

3 REPLIES 3
rpadhy
Frequent Visitor

Here is the sample Table. I have created two measure [% EE by Country] and [% EE by Band]. Now I am needing to combine this into one measure, so that if the selected parameter is "Country", [% EE by Band] if the selected parameter is "Band", and BLANK() otherwise. 

EEIDCountryBand        
1Japan6       
2India7       
3Turkey8   IndiaJapanTurkeyParameter
4Japan6 Measure% EE by County 30%40%30%Country 
5Japan7 Measure% EE by Band 40%30%30%Band
6Turkey8   678 
7India8       
8India6       
9Turkey6       
10Japan7       
Padycosmos
Solution Sage
Solution Sage

Please try the following. I hope both the tables are related.

Combined Measure =SWITCH(TRUE(), SELECTEDVALUE('Category switch views'[Parameter]) = "Country", [% EE by Country], SELECTEDVALUE('Category switch views'[Parameter]) = "Band", [% EE by Band], "" )

TaylorPBI21
Resolver I
Resolver I

Hi @rpadhy,


Could you add a sample table and then the result you'd expect?😎

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.