The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I want to do a line chart, where years between 2006 and 2020 are shown, no months. But for 2020 it would also show the months.
So the date axis would look like:
2006 2007 2008.... 2019 2020 Jan 2020 Feb 2020 March
Is there a way to do this? Or any custom visuals?
Solved! Go to Solution.
@Anonymous
You can create a new column in your date dimension like that and use
New column = If(year([Date] =year(today()), format([Date],"MMM YYYY"), format([date],"YYYY"))
As always, great solution @amitchandak. Any tips on sorting now? I now have 2019 2020 2021 2022Feb 2022Jan. ...or should I just create a separate sort table?
@Anonymous
You can create a new column in your date dimension like that and use
New column = If(year([Date] =year(today()), format([Date],"MMM YYYY"), format([date],"YYYY"))