Ok, this one sounds pretty simple, but has proven itself to be trickier than I thought.
I have 4 subreports in Details A-D with no database connected for the main report (using it only as a container). I need to have the Group Tree created, so a user can easily navigate to the beginning of each subreport (as I would conditionally suppress the Details Section/subreport when it did not match the appropriate Group Name).
So in essence, I'm looking to display things in the following manner --
GROUP NAME 01
--------
SubReport 01
===================
GROUP NAME 02
--------
SubReport 02
===================
etc
with a Group Tree indicating each Group
The catch being, there are no fields to base a formula on in the main report.
I've tried the following formula (which, while valid, is not selectable for the Group By function):
StringVar ReportName;
NumberVar X;
For X:= 1 to 4 Step 1 do
(If X = 1 Then "Group 01"
Else If X = 2 Then "Group 02"
Else If X = 3 Then "Group 03"
Else If X = 4 Then "Group 04");
Any assistance would be greatly appreciated :)
Thank you!