BookmarkSubscribeRSS Feed
karolisb
Fluorite | Level 6

hello there,

I'm using proc report to generate some basic reports, but I'm getting some problems managing table.

For example:

a.png

It seems a normal looking report, but what i want is that 'Age' would be in one cell without blank one above.

a.png

Is it possible? Thanks in advance

2 REPLIES 2
OS2Rules
Obsidian | Level 7

Would help if we could see the code.

Ksharp
Super User

Use proc tabulate instead . or post it at ODS and Base Reporting and see if Cynthia@sas has a good idea .

ods listing close;
ods html file='x.html' style=sasweb;
proc tabulate data=sashelp.class;
 class age sex;
 var weight;
 table age=' ',sex=' '*weight=' '*(mean min max)/box='Age';
run;
ods html close;
ods listing;

c.png

Xia Keshan

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

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
  • 1391 views
  • 3 likes
  • 3 in conversation