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
mariases94
Helper II
Helper II

Calendar in Spanish

Hello!

 

I don't know why my Calendar Table is in English. I've changed the lenguage and I've restart Power BI, and the information still appears in English.

 

mariases94_0-1643189036493.png

 

mariases94_1-1643189057124.png  

mariases94_2-1643189074467.png

 

 

Can someone help me, pleaseee??

 

Thanks!!

 

 

1 ACCEPTED SOLUTION
goncalogeraldes
Super User
Super User

Hello there @mariases94 ! If you are doing it in Power Query with the Date.DayOfWeekName() function, you can add an extra optional parameter to format it as a Spanish word like so:

goncalogeraldes_0-1643190681136.png

 

If you are doing it with DAX, you can do so with the FORMAT() function additional parameter for "locale name":

Mes = FORMAT( [Date], "mmmm", "es-es")

goncalogeraldes_1-1643190951589.png

 

Hope this answer solves your problem!
If you need any additional help please @ me in your reply.
If my reply provided you with a solution, please consider marking it as a solution ✔️ or giving it a kudoe 👍
Thanks!

You can also check out my LinkedIn!

Best regards,
Gonçalo Geraldes

 

View solution in original post

3 REPLIES 3
mariases94
Helper II
Helper II

@goncalogeraldes 

 

Gracias Gonçalo!! Me ha funcionado!

 

Pero ahora me salen los meses en minúscula y necesito que la primera letra de cada mes me salga en mayúscula. ¿Como se hace?

 

mariases94_0-1643191387568.png

 

 

Gracias!!!!

No problem @mariases94 , you can do it like so:

 

Mes = 
var _date = FORMAT( 'Calendar'[Date_Key], "mmmm", "es-es")
return
UPPER(LEFT(_date, 1)) & RIGHT(_date, LEN(_date) - 1)

 

goncalogeraldes_0-1643191917146.png

 

Hope this answer solves your problem!
If you need any additional help please @ me in your reply.
If my reply provided you with a solution, please consider marking it as a solution ✔️ or giving it a kudoe 👍
Thanks!

You can also check out my LinkedIn!

Best regards,
Gonçalo Geraldes

 

goncalogeraldes
Super User
Super User

Hello there @mariases94 ! If you are doing it in Power Query with the Date.DayOfWeekName() function, you can add an extra optional parameter to format it as a Spanish word like so:

goncalogeraldes_0-1643190681136.png

 

If you are doing it with DAX, you can do so with the FORMAT() function additional parameter for "locale name":

Mes = FORMAT( [Date], "mmmm", "es-es")

goncalogeraldes_1-1643190951589.png

 

Hope this answer solves your problem!
If you need any additional help please @ me in your reply.
If my reply provided you with a solution, please consider marking it as a solution ✔️ or giving it a kudoe 👍
Thanks!

You can also check out my LinkedIn!

Best regards,
Gonçalo Geraldes

 

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