Hello all:
In a project, I need to make a table in SAS, I use proc tabulate to achieve it. The structure of the table works well, unless one problem bothers me as following pictures.I want to spread the title out and reduce the title height.
The table I want:
The table I have:
It is almost there. However, I cannot come up with a solution to spread the title out, I can easily change it in Excel, but the situation is I need to make the report all completed by SAS.
Any help would be greatly appreciated.
Thanks,
What is your code?
Proc tabulate does not do what you showed.
data HAVE;
do CAT='A','B';
do WHEN='Very often','Often','Sometimes','Never';
output;
end;
end;
run;
proc format ;
value $longb 'B'=' ksdhk jskjh khsk kjhk hkh kkhkkhdkhdk hkdhkkhkhdkdfhkk';
run;
proc tabulate data=HAVE;
class CAT WHEN;
table n='#', CAT=' '*WHEN=' ';
format CAT $longb.;
run;
A | ksdhk jskjh khsk kjhk hkh kkhkkhdkhdk hkdhkkhkhdkdfhkk | |||||||
---|---|---|---|---|---|---|---|---|
Never | Often | Sometimes | Very often | Never | Often | Sometimes | Very often | |
# | 1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.