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
Anonymous
Not applicable

Format time/date on X-Axis

Hi - Power BI Community!
X-Axis Time 2019-2020.PNG

 

I want to show only 2019 October as 2019.10 or 10.2019 (no day)

or

only once 2019 and once 2020 - not at the beginning of all months.

I tried to change the date/time format but nothing has change I use the dax: 

Dates = CALENDAR(DATE(2019,09,30),TODAY()) with hierachie. 

Thank you for your time.
1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Anonymous , Create a month year column and sort on month year sort column

 

Month Year = format([Date],"mm.yyyy")

or

Month Year = format([Date],"yyyy.mm")

 

sort on

Month Year sort = format([Date],"yyyymm")

 

https://docs.microsoft.com/en-us/power-bi/desktop-sort-by-column

 

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@Anonymous , Create a month year column and sort on month year sort column

 

Month Year = format([Date],"mm.yyyy")

or

Month Year = format([Date],"yyyy.mm")

 

sort on

Month Year sort = format([Date],"yyyymm")

 

https://docs.microsoft.com/en-us/power-bi/desktop-sort-by-column

 

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
themistoklis
Community Champion
Community Champion

@Anonymous 

 

You can convert datetime to Year-Month using the following formula:

Year-Month  = FORMAT('Table'[Date], "yyyy.mm")
OR 
Year-Month  = FORMAT('Table'[Date], "mm.yyyy")
OR
Year-Month = ( YEAR('Table'[Date])*100+MONTH('Table'[Date]) )
 
Then add it to axis

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