Forum Discussion
Return value based on selected country and its corresponding currency
- 7 years ago
Hi ekx,
It seems that you want to achieve below result, when you select country SWEDEN, it will show sek currency and sale in table, right? If so, you could create another table (cur)like below, and create relationship between tables , use new table(cur)'s country in Slicer, you will get below result
Best Regards,
Zoe ZhiIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi ekx,
You could use measure to achieve this. You still need to create a table just have country column(like above suggestions, but this table only have country column), and don't need to create relationship between two table, then you could create a measure like below, use new table's country in slicer
Measure 9 = SWITCH(SELECTEDVALUE('cur'[Country]), "A",CALCULATE(SUM('currency'[amount]), FILTER(('currency'),('currency'[currency])="a")),"B",CALCULATE(SUM('currency'[amount]), FILTER('currency',('currency'[currency])="b")),"C",CALCULATE(SUM('currency'[amount]), FILTER('currency',('currency'[currency])="c")))
Best Regards,
Zoe Zhi
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
AMAZING!! thanks so much for your help!!!