Hi,
I have three datasets, and I am exporting the data to excel using libname AS FOLLOWS:
libname excl "..\export\&infl.";
data excl.Sheet1(dblabel=yes);
set FINAL1;
run;
Now the problem is I have three datasets final1, final2, final3.While exporting to excel I have to create thrree tabs with these three datasets and rename the exc el tab as :
Base-line(Geno), Post-Bl(Geno) etc etc.. ie with Hyp[hen and brackets. How can I do that?
I can use libname statement only to export data as My data has very long character fields.
Thanks!
Use a name literal, such as :
data excl.'Base-line(Geno)'n (dblabel=yes);
PG
It doesnt work. Excel converts hypehn and bracket to underdcores...
Hi:
ODS does offer you an alternative. Look at the sheet names in the attached screenshot. They were produced with the code shown below.
Instead of your DATA step program, you would replace my PROC PRINT with a PROC PRINT for each dataset that you wanted to create as a sheet in the workbook.
cynthia
ods listing close;
title;
ods tagsets.excelxp file='c:\temp\testname.xml'
style=sasweb;
ods tagsets.excelxp options(sheet_name='Base-line(Geno)');
proc print data=sashelp.shoes(obs=3);
run;
ods tagsets.excelxp options(sheet_name='Post-Bl(Geno)');
proc print data=sashelp.cars(obs=3);
run;
ods tagsets.excelxp close;
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.