on 2024 Jun 06 3:55 PM
I know this should work - and annoyed with myself for not figuring it out.
Main report with two subreports - one residing in Da section and the other in Db. Each subreport has Header, Details, and Footer section. Header and Details are hidden, so that only the footers appear in the main report.
I want to be able to click on a subreport in the main report view and have the full subreport open, with headers, details, and footer visible.
Why can't I make this work?
Request clarification before answering.
Hi carmine1, you can do this via a shared var.
In the main report create a new formula with syntax like:
whileprintingrecords;
shared numbervar imInTheMainReport := 1
and put this in the section of the subreport you're trying to control.
Now in the subreport, go to the sections that you want to leave suppressed when you're in the main report and put in a conditional suppression formula like the following.
whileprintingrecords;
shared numbervar imInTheMainReport = 1
Now when you open the subreport you'll see all of the sections.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
79 | |
12 | |
9 | |
8 | |
7 | |
5 | |
4 | |
4 | |
3 | |
3 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.