Forum Discussion
Anonymous
6 years agoNot applicable
Multiple values are supplied where a single value was expected - If Statement
Hi All, I am stuck on a verge of closure, please help. I have a table where i have create 2 column one financials in Euros and another one Financials in Dollar. I need to display the values ...
- 6 years ago
Anonymous
You are trying to create a column with a slicer value. Only a measure can use Slicer Value.
new mesure =
if([selected Value] ="EUR",max(Waterfall[Result]),max(Waterfall[Result2]))
az38
Community Champion
6 years agohi Anonymous
try SELECTEDVALUE():
= if(selectedvalue([selected currency]) = "eur", [Result], [Result2])