Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

DAX

hello all, 

Im pretty new to writing DAX, and am trying to do something that i would appreciate if someone can help me.

the all idea is to create a some kind of a translating visual.

here is what i'm doing:

i have 4 tables 
- Custumer(idcustomer,custumerNAme,)
-Account(idAccount,Accountname)
-CustumerAccount(idcustomer,idccount,idcountry) ---> with idcountry 1= french and 2= english

-dimtranslat(iddimtrans,LIB_French,LIB_English)----> 

what i want to do is when the AccountName = idcountry 1 then LIB_French should be displayed and when the idcountry = 2 then LIB_English should be display

this is how the dimtranslat look like

traduc.JPG

any idea of how can i implement the code ?

1 ACCEPTED SOLUTION
kentyler
Solution Sage
Solution Sage

The first thing to do is change dimTranslate to have these columns.

Term_id, Language_id, Phrase

Then you can filter it in a CALCULATE statement by the term_id and the language_id and have it return the phrase in the desired language

trying to make DAX read across columns dynamically is just creating a lot of headaches you don't need.





Did this post answer your question? Mark it as a solution so others can find it!

Help when you know. Ask when you don't!




Join the conversation at We Talk BI find out more about me at Slow BI


View solution in original post

1 REPLY 1
kentyler
Solution Sage
Solution Sage

The first thing to do is change dimTranslate to have these columns.

Term_id, Language_id, Phrase

Then you can filter it in a CALCULATE statement by the term_id and the language_id and have it return the phrase in the desired language

trying to make DAX read across columns dynamically is just creating a lot of headaches you don't need.





Did this post answer your question? Mark it as a solution so others can find it!

Help when you know. Ask when you don't!




Join the conversation at We Talk BI find out more about me at Slow BI


Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors