I want to pass shared variable in main report to a subreport's crosstab formula field ? How do I do this ?

If I declare a shared variable inside main report and try to access it in the subreport's crosstab with 'whilereadingrecords' it just won't get anything.

link|improve this question

80% accept rate
feedback

1 Answer

I made a mock report and came up with this solution:

  • Make a formula in your main report. Enter this code:
whileprintingrecords;
shared numbervar foo:=3;
foo
  • In your subreport, make a formula. For this example, call it MySharedVar. Enter this code:

shared numbervar foo

  • In your subreport, make a second formula. Call it MySharedVar2. Enter this code:

MySharedVar

  • Use the MySharedVar2 formula in your crosstab as normal.
link|improve this answer
when you would use 'WhilePrintingRecords' in crosstab formula you won't be able to access the shared variable because it must be evaluated later. – Damien Joe Feb 18 '11 at 7:50
I know what you're getting at, so I crossed out that line and it still works. I've just made a blank report, followed the instructions above, and use MySharedVar2 as a normal variable. – PowerUser Feb 21 '11 at 13:45
Sorry PowerUser, I meant when you would use 'WhileReadingRecords' the shared variable can't be accessed inside subreport because it is evaluated in pass later on. Damien – Damien Joe Feb 23 '11 at 5:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.