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
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
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.