<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: tagsets ods and excel file creation in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/tagsets-ods-and-excel-file-creation/m-p/253758#M15328</link>
    <description>&lt;P&gt;You can use a format, but I don't understand your requirement for suppression. Can you show an example?&lt;/P&gt;</description>
    <pubDate>Wed, 02 Mar 2016 11:48:38 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2016-03-02T11:48:38Z</dc:date>
    <item>
      <title>tagsets ods and excel file creation</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/tagsets-ods-and-excel-file-creation/m-p/253739#M15327</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;i have a varible in dataset named "name"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm listing name variable in excel file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;name&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;abc&lt;/P&gt;
&lt;P&gt;bca&lt;/P&gt;
&lt;P&gt;cbd&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;NOw I want to supress variable in excel file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;like&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(name) name should be supressd and values should be printed as same in dataset.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;please help..&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have given black label in proc print. but im getting variable name in colum of excel file.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Mar 2016 11:47:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/tagsets-ods-and-excel-file-creation/m-p/253739#M15327</guid>
      <dc:creator>vandhan</dc:creator>
      <dc:date>2016-03-02T11:47:19Z</dc:date>
    </item>
    <item>
      <title>Re: tagsets ods and excel file creation</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/tagsets-ods-and-excel-file-creation/m-p/253758#M15328</link>
      <description>&lt;P&gt;You can use a format, but I don't understand your requirement for suppression. Can you show an example?&lt;/P&gt;</description>
      <pubDate>Wed, 02 Mar 2016 11:48:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/tagsets-ods-and-excel-file-creation/m-p/253758#M15328</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-03-02T11:48:38Z</dc:date>
    </item>
    <item>
      <title>Re: tagsets ods and excel file creation</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/tagsets-ods-and-excel-file-creation/m-p/253760#M15329</link>
      <description>dataset look like:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;name&lt;BR /&gt;&lt;BR /&gt;abc&lt;BR /&gt;cba&lt;BR /&gt;xyz&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;excel file&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;(blanck column name)&lt;BR /&gt;abc&lt;BR /&gt;cba&lt;BR /&gt;xyz&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;but currently I'm getting as it is in dataset.&lt;BR /&gt;&lt;BR /&gt;name&lt;BR /&gt;abc&lt;BR /&gt;cba&lt;BR /&gt;xyz&lt;BR /&gt;&lt;BR /&gt;when i apply black label for this 'name' variable .. im getting variable&lt;BR /&gt;name in column of excel.&lt;BR /&gt;&lt;BR /&gt;##- Please type your reply above this line. Simple formatting, no&lt;BR /&gt;attachments. -##</description>
      <pubDate>Wed, 02 Mar 2016 11:51:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/tagsets-ods-and-excel-file-creation/m-p/253760#M15329</guid>
      <dc:creator>vandhan</dc:creator>
      <dc:date>2016-03-02T11:51:34Z</dc:date>
    </item>
    <item>
      <title>Re: tagsets ods and excel file creation</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/tagsets-ods-and-excel-file-creation/m-p/253782#M15331</link>
      <description>&lt;P&gt;Something like:&lt;/P&gt;
&lt;PRE&gt;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;&lt;/PRE&gt;</description>
      <pubDate>Wed, 02 Mar 2016 12:51:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/tagsets-ods-and-excel-file-creation/m-p/253782#M15331</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2016-03-02T12:51:28Z</dc:date>
    </item>
    <item>
      <title>Re: tagsets ods and excel file creation</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/tagsets-ods-and-excel-file-creation/m-p/254039#M15340</link>
      <description>You can also use the NOHEADER option in PROC REPORT to do the same thing.&lt;BR /&gt;cynthia&lt;BR /&gt;&lt;BR /&gt;proc report data=a nowd noheader;&lt;BR /&gt;  columns name;&lt;BR /&gt;run;</description>
      <pubDate>Thu, 03 Mar 2016 02:59:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/tagsets-ods-and-excel-file-creation/m-p/254039#M15340</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2016-03-03T02:59:52Z</dc:date>
    </item>
    <item>
      <title>Re: tagsets ods and excel file creation</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/tagsets-ods-and-excel-file-creation/m-p/254042#M15341</link>
      <description>proc export data=sashelp.class outfile='/folders/myfolders/adae.xls' dbms=xls replace;
putnames=no;
run;



If you are using PROC REPORT, you can use :

proc report data=sashelp.class nowd noheader;</description>
      <pubDate>Thu, 03 Mar 2016 03:07:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/tagsets-ods-and-excel-file-creation/m-p/254042#M15341</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-03-03T03:07:15Z</dc:date>
    </item>
  </channel>
</rss>

