hello,
I use proc print to display the data of a dataset into an excel file.
my problem is that the first column is too width in excel
thanks in advance for your help
regards
Nasser
Hi,
In addition to the option that Reeza mentioned, if it is ONLY the first column and you're using PROC PRINT, then this will work:
ods excel file='c:\temp\diffwidth.xlsx';
proc print data=sashelp.class noobs;
var sex /
style(data)={width=.25in just=c color=navy font_weight=bold};
var age /
style(data)={width=.25in just=c color=green font_weight=bold};
var name height weight;
run;
ods excel close;
As an example of using style overrides.
Cynthia
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.