Hi,
I created a shared variable on my subreport whose value I want to pass on my main report. I have groupings on Region, Sector and Area on my subreport. The shared variable would store the values of all the areas found in a particular region and sector and display it on the main report. I want to display these areas on the report as column headings. Right now if there are 3 areas under a region and sector it displays only the first area.
Here is the formula for my shared variable on my subreport -
WhilePrintingRecords;
Shared StringVar strArea;
strArea := {Sub.AREA}
The formula on my main report is as follows -
WhilePrintingRecords;
Shared StringVar strArea;
"Area: " + strArea + " "
Thanks
I created a shared variable on my subreport whose value I want to pass on my main report. I have groupings on Region, Sector and Area on my subreport. The shared variable would store the values of all the areas found in a particular region and sector and display it on the main report. I want to display these areas on the report as column headings. Right now if there are 3 areas under a region and sector it displays only the first area.
Here is the formula for my shared variable on my subreport -
WhilePrintingRecords;
Shared StringVar strArea;
strArea := {Sub.AREA}
The formula on my main report is as follows -
WhilePrintingRecords;
Shared StringVar strArea;
"Area: " + strArea + " "
Thanks