I have created a range bar chart in ssrs. I want to show x-axis label in quater format i.e q1 for jan,q2 for apr,q3 for july,q4 for oct
Here is the screenshot. I need to change from Month Jan-Q1.
I know nothing about your dataset fields so I am guessing.
Try this expression in x-axis labels:
=Switch(
Fields!Month.Value="Jan","Q1",
Fields!Month.Value="Apr","Q2",
Fields!Month.Value="Jul","Q3",
Fields!Month.Value="Oct","Q4"
)
EDIT: Add expression to label x-axis in range chart.
Let me know if this was helpful.