crogers111
Technical User
CR XI
SQL
I'm trying to create a simple Bar Chart where each bar is a Month & Year. e.g. Dec-06, Jan-07, etc.
The report uses parameters forbeginning and end date based on the same date field that the bar chart uses. Using the parameters means the report span more than 1 year.
My chart is in the report Header
I'm having difficulty creating the formula that would be used for the 'on change of' so that each bar is a month & year AND in chronological order.
I tried:
year({table.CheckDate})& ToText(Month({table.CheckDate}),"00")
which puts it order but the label doesn't display as needed (Dec-06) on the chart. (This formual does work for grouping as I can Format the formula's Display String to show Dec-06)
How can I get this data in chrononlogical order regardless of the date range and have a display of: Jan-07, Feb-07, Mar-07, etc ? I also considered setting up a specified order but since the report uses parameters and can span more than 1 year, I was unsure if this was feasible.
Thanks.
SQL
I'm trying to create a simple Bar Chart where each bar is a Month & Year. e.g. Dec-06, Jan-07, etc.
The report uses parameters forbeginning and end date based on the same date field that the bar chart uses. Using the parameters means the report span more than 1 year.
My chart is in the report Header
I'm having difficulty creating the formula that would be used for the 'on change of' so that each bar is a month & year AND in chronological order.
I tried:
year({table.CheckDate})& ToText(Month({table.CheckDate}),"00")
which puts it order but the label doesn't display as needed (Dec-06) on the chart. (This formual does work for grouping as I can Format the formula's Display String to show Dec-06)
How can I get this data in chrononlogical order regardless of the date range and have a display of: Jan-07, Feb-07, Mar-07, etc ? I also considered setting up a specified order but since the report uses parameters and can span more than 1 year, I was unsure if this was feasible.
Thanks.