Forum Discussion
GHerz
4 years agoFrequent Visitor
New challenge for Dynamic Measures
Dear Power BI Experts, I have searched through the community and other sources several time, but can't find a solution for below, there I appreciate any wise comment on this: With Tabular editor...
- 4 years ago
You can get the selected Currency with SELECTEDVALUE:
SELECTEDVALUE ( CurrencyTable[Currency] )You can identify the selected measure with ISSELECTEDMEASURE:
ISSELECTEDMEASURE ( [Revenue] )Use these expressions in a SWITCH statement to determine which measure to use.
GHerz
4 years agoFrequent Visitor
Thank you very much for your comments. That helped me understanding that I was on the right way (trying with switch) and then I found an error in my statements that I had overseen for a while ... Many thanks, Gunnar