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 September 15. Request your voucher.
Hi Power BI community
In my date table I format the date into year, quarter, month and week.
To format the quarter I use this line of dax:
year_quarter =
FORMAT ( Calender[Date], "q-yy" )
To make sure it isn't to confusing I want to add the letter Q in front of the date so it goes from
3-21 -> Q3-21
Does anyone know how to do this?
Solved! Go to Solution.
@ThomasWeppler Try this,
year_quarter = "Q"&FORMAT ( Calender[Date], "q-yy" )
Hi there- You can try
@ThomasWeppler Try this,
year_quarter = "Q"&FORMAT ( Calender[Date], "q-yy" )