I'm using CR XIR2 and an Oracle DB with native connection.
I have a report that I created which is basically a manual crosstab. The report structure is very simple; there's just one group and one detail line.
I have it grouped by Project Type. On the top I have manually broken it into twelve columns, one for each month of a fiscal year. I've made 12 formulas that resolve the project numbers in each month as such (July as an example)
On each detail line, one project number will show up under the corresponding month that it starts. Then they wanted an on-demand subreport for each project so they could see a lot of the details by clicking on the project number. That wasn't hard, either.
Now they want a count of the projects for each month. No matter what I do, a running total will count every detail line for every month, instead of just the ones that have projects that month.
Any help?? I just can't see the forest through the trees today.
I have a report that I created which is basically a manual crosstab. The report structure is very simple; there's just one group and one detail line.
I have it grouped by Project Type. On the top I have manually broken it into twelve columns, one for each month of a fiscal year. I've made 12 formulas that resolve the project numbers in each month as such (July as an example)
Code:
if
({PROJECT.START_DATE} >= Date("7/1/" + {?FiscalYear})
and
({PROJECT.START_DATE} < Date("8/1/" + {?FiscalYear}))
then
{PROJECT.PROJECT_NUMBER}
On each detail line, one project number will show up under the corresponding month that it starts. Then they wanted an on-demand subreport for each project so they could see a lot of the details by clicking on the project number. That wasn't hard, either.
Now they want a count of the projects for each month. No matter what I do, a running total will count every detail line for every month, instead of just the ones that have projects that month.
Any help?? I just can't see the forest through the trees today.