<?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: Export Proc Contents in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Export-Proc-Contents/m-p/118549#M10324</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you please provide a code example?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 06 Apr 2015 14:52:58 GMT</pubDate>
    <dc:creator>whijazi</dc:creator>
    <dc:date>2015-04-06T14:52:58Z</dc:date>
    <item>
      <title>Export Proc Contents</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Export-Proc-Contents/m-p/118547#M10322</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there a way to export proc contents to an excel file? It would be nice to have the variable name, the label, and the format name to easily create a data dictionary. I have tried a couple different ways but they never come out right. Thanks in advance. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Aug 2013 23:28:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Export-Proc-Contents/m-p/118547#M10322</guid>
      <dc:creator>rfarmenta</dc:creator>
      <dc:date>2013-08-21T23:28:47Z</dc:date>
    </item>
    <item>
      <title>Re: Export Proc Contents</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Export-Proc-Contents/m-p/118548#M10323</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You just need an out=&amp;lt;dsname&amp;gt; in your code and then export it to excel in the usual manner.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;p&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;roc contents data=sashelp.class out= want;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Aug 2013 23:57:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Export-Proc-Contents/m-p/118548#M10323</guid>
      <dc:creator>Scott_Mitchell</dc:creator>
      <dc:date>2013-08-21T23:57:14Z</dc:date>
    </item>
    <item>
      <title>Re: Export Proc Contents</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Export-Proc-Contents/m-p/118549#M10324</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you please provide a code example?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Apr 2015 14:52:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Export-Proc-Contents/m-p/118549#M10324</guid>
      <dc:creator>whijazi</dc:creator>
      <dc:date>2015-04-06T14:52:58Z</dc:date>
    </item>
    <item>
      <title>Re: Export Proc Contents</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Export-Proc-Contents/m-p/118550#M10325</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can also use the SASHELP.VCOLUMN and get the information from there, use KEEP to keep the variables you need.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data data_dictionary;&lt;/P&gt;&lt;P&gt;set sashelp.vcolumn;&lt;/P&gt;&lt;P&gt;where upper(libname)='SASHELP' and upper(memname)='CLASS';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Apr 2015 15:39:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Export-Proc-Contents/m-p/118550#M10325</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2015-04-06T15:39:55Z</dc:date>
    </item>
    <item>
      <title>Re: Export Proc Contents</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Export-Proc-Contents/m-p/118551#M10326</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Or sent the output to excel at the same time:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods tagsets.excelxp file="my soon to be Excel.xml";&lt;/P&gt;&lt;P&gt;proc contents data=have; run;&lt;/P&gt;&lt;P&gt;ods tagsets.excelxp close;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The XML file generated can be opened in Excel and if desired saved to native Excel format.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Apr 2015 16:51:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Export-Proc-Contents/m-p/118551#M10326</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2015-04-06T16:51:35Z</dc:date>
    </item>
  </channel>
</rss>

