Hi,
i have a varible in dataset named "name"
I'm listing name variable in excel file.
name
abc
bca
cbd
NOw I want to supress variable in excel file.
like
(name) name should be supressd and values should be printed as same in dataset.
please help..
I have given black label in proc print. but im getting variable name in colum of excel file.
You can use a format, but I don't understand your requirement for suppression. Can you show an example?
Something like:
ods tagsets.excelxp file="s:\temp\rob\temp.xml"; data a; name="abc"; output; name="def"; output; run; proc report data=a nowd; columns name; define name / " "; 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.