Hi All,
I have a proc tabulate that has long names as the headers. I want to change the orientation of the words to be vertical in the header so the table fits to one page and is easier to read.
Proc Tabulate data=work.warra_trans_vq format=comma.;
Class origin_cd target_cd;
VAR TRANSFER_CNT;
Table
Origin_CD = " " All = " "
,Target_CD = "Target" * transfer_cnt=" "
/Box="Transfers"
;
Keylabel SUM=" ";
Run;
Current output looks like this:
Required output:
Cheers
Dean
Yes. It doesn't work for PROC TABULATE ,but work for PROC REPORT .
You can find the detail info about tagset.msoffic2k at support.sas.com
Or Calling @Reeza
Ckeck
ods tagesets.msoffice2k_m
Hi @Ksharp
Still working on this one. Seems in a proc tabulate there is no style to rotate the heading text.
I can't seem to find anything within ods tagesets.msoffice2k_m that helps me either.
Any other suggestions?
Cheers
Dean
Yes. It doesn't work for PROC TABULATE ,but work for PROC REPORT .
You can find the detail info about tagset.msoffic2k at support.sas.com
Or Calling @Reeza
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Check out this tutorial series to learn how to build your own steps in SAS Studio.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.