To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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" )