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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
Naveen29
Helper II
Helper II

Date table in french

I would like to create a date table in French language , All months and dates should show in French. Is it possible to do that by using DAX?

1 REPLY 1
AmiraBedh
Super User
Super User

It is either you change the configuration of PBI Desktop : 

AmiraBedh_0-1713528671128.png

 

or using DAX : 

Date Table = 
ADDCOLUMNS (
    CALENDAR (DATE(2020,1,1), DATE(2030,12,31)),  -- Adjust the date range as needed
    "Year", YEAR([Date]),
    "Month Number", MONTH([Date]),
    "Month Name", FORMAT([Date], "MMMM", "fr-FR"),
    "Day of Week Number", WEEKDAY([Date]),
    "Day of Week Name", FORMAT([Date], "dddd", "fr-FR"),
    "Day", DAY([Date])
)

Proud to be a Power BI Super User !

Microsoft Community : https://docs.microsoft.com/en-us/users/AmiraBedhiafi
Linkedin : https://www.linkedin.com/in/amira-bedhiafi/
StackOverflow : https://stackoverflow.com/users/9517769/amira-bedhiafi
C-Sharp Corner : https://www.c-sharpcorner.com/members/amira-bedhiafi
Power BI Community :https://community.powerbi.com/t5/user/viewprofilepage/user-id/332696

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors