Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
3 years ago

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

  • Hi Anonymous,


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

  • 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], "" )

  • Anonymous's avatar
    Anonymous
    Not applicable

    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