BookmarkSubscribeRSS Feed
Daily1
Quartz | Level 8

i have 

proc report data=sashelp.class(obs=8)
      ;
		 define sex / "Sex" order;
compute before sex;
 line ' aaa ';
 endcomp; 
 run;
  

result 

Daily1_0-1693223807026.png

i want increase cell space 

Daily1_1-1693223831472.png

 

 

 

 

1 REPLY 1
Ksharp
Super User
ods excel file='c:\temp\temp.xlsx';
proc report data=sashelp.class(obs=8)
    nowd  ;
		 define sex / "Sex" order;
compute before sex/style(lines)={cellheight=0.25in vjust=m};
 line ' aaa ';
 endcomp; 
 run;
 ods excel close;

Ksharp_0-1693224515050.png

 

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

Creating Custom Steps in SAS Studio

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.

SAS Training: Just a Click Away

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

Browse our catalog!

Discussion stats
  • 1 reply
  • 728 views
  • 0 likes
  • 2 in conversation