0

I've created a range bar chart using SSRS 2008.

It is a date range

StartDate is =DateAdd("yyyy",-2,Today())

EndDate is =DateAdd("yyyy",2,Today())

Is there a way to format the Axis labels to show in Quarters?? I am able to display in "MMM-YY" format. But I want it in "Qq-yyyy" format.

Thanks!! Any help is appreciated.

damseldeebi
  • 137
  • 1
  • 16

1 Answers1

0

use following format:

="Q"+Cstr(DatePart(DateInterval.Quarter,today()))+" - "+Cstr(Format(Today(),"yyyy"))

Output will be : "Q4 - 2014"

Put Your Date Field/Axis labels Filed instead of "Today()" in above expression.

Manoj
  • 631
  • 4
  • 9