March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
I have chart that I want to change the Y-Axis format that is currently reading as "2019 - January" to "01/19" How would I do that? It's coming from my date table.
In your date table you can create a new column
Month year = format([Date],"MM-YY")
But this will not sort correctly
So, create sort Column
Month year sort= format([Date],"YYMM") and mark this as sort column of the first one an then use the first one.
https://docs.microsoft.com/en-us/power-bi/desktop-sort-by-column
I am hosting a webinar on 25th April on Power BI, Check Details - https://www.linkedin.com/posts/amitchandak78_webinar-tech-techforgood-activity-6658266754378231808-y...
Honestly your best bet is to use a proper Date Table that has a MonthNum column and something like ShortYear as well.
If you're unable to do that, you can create three calculated columns to get a very close approximation of what you want.
MonthNum = MONTH( 'Table'[Date])
YearShort = RIGHT(YEAR(Table[Date]),2)
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
125 | |
85 | |
69 | |
54 | |
45 |
User | Count |
---|---|
204 | |
106 | |
98 | |
65 | |
54 |