nerdlinger
Programmer
I am having a problem with a shared variable
I have a subreport(placed in the Report footer of the main report and suppressed) that I calculate monthly values in and I need to get them into the group footer of the main report. I keep getting a zero on the report when I do the following...what am I doing wrong
In the subreport I have this
-------------------------------------
@SendQ1--placed in the report footer section
This is @SendQ1
WhilePrintingRecords;
Shared NumberVar MTDQ1 :={@subpctQ1};
-------------------------------------
@subpctQ1 is:
{#RTotalQ1}%{#SATotalCount}
-------------------------------------
In the main report I have
@GetQ1
WhilePrintingRecords;
Shared NumberVar MTDQ1;
--------------------------------------------
I place @GetQ1 where I need it and all I get is 0.00? Any help on this would be more than appreciated.
thanks
I have a subreport(placed in the Report footer of the main report and suppressed) that I calculate monthly values in and I need to get them into the group footer of the main report. I keep getting a zero on the report when I do the following...what am I doing wrong
In the subreport I have this
-------------------------------------
@SendQ1--placed in the report footer section
This is @SendQ1
WhilePrintingRecords;
Shared NumberVar MTDQ1 :={@subpctQ1};
-------------------------------------
@subpctQ1 is:
{#RTotalQ1}%{#SATotalCount}
-------------------------------------
In the main report I have
@GetQ1
WhilePrintingRecords;
Shared NumberVar MTDQ1;
--------------------------------------------
I place @GetQ1 where I need it and all I get is 0.00? Any help on this would be more than appreciated.
thanks