If you are unable to create a new account, please email support@bspsoftware.com

 

News:

MetaManager - Administrative Tools for IBM Cognos
Pricing starting at $2,100
Download Now    Learn More

Main Menu

How to sort/order x-axis in chart

Started by khoinh, 20 Jul 2010 06:05:34 AM

Previous topic - Next topic

khoinh

Hi,

I have the chart with x-axis is name of month (Jan, Feb, Mar,...). At now, x-axis of my chart is sorted by alphabetically. I want to apply order from Jan to Dec into my chart. Is there any way to accomplish this?   ???

Thanks
Khoi

imts

u must be having some column like MONTH_ID in ur DB ; get it in ur query and sort on it.

Else create a data item like
case
when ( 'jan') then (1)
when ('feb') then (2)
...end

like this.

And do an advance sort on this data item.

-TS