Hi,
Thank you for the reply.
For all the modules I'm using either PROC PRINT (90%) or PROC REPORT - in all cases I'm setting CONTENTS to "" to avoid bookmarks like:
The Print Procedure
|_Module 1
I was trying to type module's name in CONTENTS and use ods proclabel for top level node, but the result was:
Patient X
|_Module 1
The Print Procedure
|_Module 2
The Print Procedure
|_Module 3
...
Each module takes data from different dataset, so I have to run several procedures (almost always it's one procedure per module). I'm not using BY group processing anywhere. I use only simple data step processing and printing by above mentioned procedures.
The code I'm using for each module is just:
ods proclabel= 'Module N';
proc print data=temp1 label width=min noobs contents='' split='$';
label x='ID'
y='Start Date'
z='End Date'
...
;
var x y z ...;
run;
What I want to get is simply:
Patient X
|_Module 1
|_Module 2
|_Module 3
...
If you have any ideas how to produce such an output, I'd grateful.
Thanks,
Michal
... View more