Forum Discussion
Anonymous
3 years agoNot applicable
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() ) ) ...
Anonymous
3 years agoNot 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.
| EEID | Country | Band | |||||||
| 1 | Japan | 6 | |||||||
| 2 | India | 7 | |||||||
| 3 | Turkey | 8 | India | Japan | Turkey | Parameter | |||
| 4 | Japan | 6 | Measure | % EE by County | 30% | 40% | 30% | Country | |
| 5 | Japan | 7 | Measure | % EE by Band | 40% | 30% | 30% | Band | |
| 6 | Turkey | 8 | 6 | 7 | 8 | ||||
| 7 | India | 8 | |||||||
| 8 | India | 6 | |||||||
| 9 | Turkey | 6 | |||||||
| 10 | Japan | 7 |