Forum Discussion
Juramirez
8 years agoResolver I
Ignore Filter in slicer
Hi all I see many topics about this but i couldn't find the answer that i was looking. I have a slicer that has these values: USD and EUR. This are from a table where I have transactions (some ...
- 8 years ago
Yes that is what i expected, as I mentioned earlier, you need to use aggregated method like sum
TotalWithNewTable= IF(SELECTEDVALUE(NewTable[Column1])="USD", SUM(Table1[USDAmount]), SUM(Table1[EURAmount]) )
and add it as a measure.
skocheta
8 years agoAdvocate I
Thanks parry2k, That works. Could you explain How/Why :)
I was assuming that it was the else condition which was causing issue.
And on a different/related note.. Could you suggest a way so that this works with Formatting.
Alternately I created a Measure which displays selected Currency in a column, There the issue is when user does not select any currency (hence would ned a default option).