Forum Discussion
Anonymous
2 years agoNot applicable
Multilingual Report
Hello ,
I have a following tables as showed:
ModellingRegion tableLanguage tablePRODUCT ,SALES TABLE
I have a following task to perform:
- Multilingual Report: o Add a slicer/filter to allow users to select their preferred language (e.g., English, German).
- Use DAX to create measures that dynamically change based on the selected language.
Can someone help me on this please ? I tried to add visual card but it showing blank value
1 Reply
- AnonymousNot applicable
Hi Anonymous ,
Based on the description, drag the language column into the slicer visual.
Then, create the measure to filter the language.
Measure = var _langu = SELECTEDVALUE('Language'[Languages]) RETURN SWITCH( TRUE(), _langu = "English", 1, _langu = "German", 2 )You can also view the following document to learn more information.
Solved: DAX SWITCH + SELECTEDVALUE() - Microsoft Fabric Community
Best Regards,
Wisdom Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.