hello there,
I'm using proc report to generate some basic reports, but I'm getting some problems managing table.
For example:
It seems a normal looking report, but what i want is that 'Age' would be in one cell without blank one above.
Is it possible? Thanks in advance
Would help if we could see the code.
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;
Xia Keshan
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.
Ready to level-up your skills? Choose your own adventure.