BookmarkSubscribeRSS Feed
PTD_SAS
Obsidian | Level 7

With Proc Report, is there a way to repeat the column headers but not the titles when the value of a group variable changes? i.e. to group the report by a group variable and repeat the column headers only.

Fethon

2 REPLIES 2
Ksharp
Super User

What output do you like?

It would be better if you could post some desired output.

proc report data=sashelp.class nowd noheader;
column sex name;
 define sex /group;
 compute before sex;
  line ' ';
  line @45 'Sex' @49 'Name';
 endcomp;
run;

Ksharp

PTD_SAS
Obsidian | Level 7

Ksharp,

Thanks for that, it gave me clues on how to do it. If there is no automatic way of displaying headers by group then I can format the line statement in compute section and achieve the same result.

Fethon

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1196 views
  • 3 likes
  • 2 in conversation