heyy so, Excel doesn’t have a built-in “quarter” number format, so typing qq-yy
will always just show “qq” as text. To display quarters on your axis, you’ll need to either (1) create a helper column in your data with a formula like ="Q"&ROUNDUP(MONTH(A2)/3,0)&"-"&TEXT(A2,"yy")
and use that as your axis labels, or (2) group the dates by quarter if you’re using a PivotChart. Simply changing the number format won’t work because quarters aren’t a supported date format code.