AZdesertdog
IS-IT--Management
Using CR10 with MSSQL
I have a report that obtains a number of days by using a running total and then I need to associate a 'score' to that number with a formula such as:
if {#Days2Bill} >= 12 then 1 else
if {#Days2Bill} in 11.9 to 11.6 then 1.2 else
if {#Days2Bill} in 11.5 to 11.2 then 1.4 else
if {#Days2Bill} in 11.1 to 10.8 then 1.6 else
if {#Days2Bill} in 10.7 to 10.4 then 1.8 else
if {#Days2Bill} in 10.3 to 10 then 2
My goal is to have a simple gauge chart the points at a number between 1 and 2. But since the above is a print time calc I have to do that subreport deal for the chart. I've tried to follow the instructions on the cr9_charting_print_time.pdf but I think my solution should be much easier since I just want to pass one number back to populate the chart. I've tried making the above a variable and passing to the subreport but I keep getting a 'blank' chart even though I can see the shared variable in my subreport and on my main report. Any help would be appreciated. THANKS!
I have a report that obtains a number of days by using a running total and then I need to associate a 'score' to that number with a formula such as:
if {#Days2Bill} >= 12 then 1 else
if {#Days2Bill} in 11.9 to 11.6 then 1.2 else
if {#Days2Bill} in 11.5 to 11.2 then 1.4 else
if {#Days2Bill} in 11.1 to 10.8 then 1.6 else
if {#Days2Bill} in 10.7 to 10.4 then 1.8 else
if {#Days2Bill} in 10.3 to 10 then 2
My goal is to have a simple gauge chart the points at a number between 1 and 2. But since the above is a print time calc I have to do that subreport deal for the chart. I've tried to follow the instructions on the cr9_charting_print_time.pdf but I think my solution should be much easier since I just want to pass one number back to populate the chart. I've tried making the above a variable and passing to the subreport but I keep getting a 'blank' chart even though I can see the shared variable in my subreport and on my main report. Any help would be appreciated. THANKS!