<?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: Proc contents - is there an option to list variables by type (numeric or character)? in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Proc-contents-is-there-an-option-to-list-variables-by-type/m-p/611418#M18193</link>
    <description>&lt;P&gt;Thanks for your reply! While I didn't go this route, it was helpful to try this option.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 12 Dec 2019 18:54:05 GMT</pubDate>
    <dc:creator>accintron</dc:creator>
    <dc:date>2019-12-12T18:54:05Z</dc:date>
    <item>
      <title>Proc contents - is there an option to list variables by type (numeric or character)?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Proc-contents-is-there-an-option-to-list-variables-by-type/m-p/611377#M18187</link>
      <description>&lt;P&gt;This would be incredibly helpful.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Dec 2019 16:31:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Proc-contents-is-there-an-option-to-list-variables-by-type/m-p/611377#M18187</guid>
      <dc:creator>accintron</dc:creator>
      <dc:date>2019-12-12T16:31:23Z</dc:date>
    </item>
    <item>
      <title>Re: Proc contents - is there an option to list variables by type (numeric or character)?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Proc-contents-is-there-an-option-to-list-variables-by-type/m-p/611378#M18188</link>
      <description>&lt;P&gt;Not sure. But you can filter&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc contents data=sashelp.class out=want(where=(type=1));
run;
proc print noobs;run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 12 Dec 2019 16:34:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Proc-contents-is-there-an-option-to-list-variables-by-type/m-p/611378#M18188</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2019-12-12T16:34:02Z</dc:date>
    </item>
    <item>
      <title>Re: Proc contents - is there an option to list variables by type (numeric or character)?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Proc-contents-is-there-an-option-to-list-variables-by-type/m-p/611379#M18189</link>
      <description>&lt;P&gt;Sort the output data set by type, then print.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Dec 2019 16:36:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Proc-contents-is-there-an-option-to-list-variables-by-type/m-p/611379#M18189</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-12-12T16:36:29Z</dc:date>
    </item>
    <item>
      <title>Re: Proc contents - is there an option to list variables by type (numeric or character)?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Proc-contents-is-there-an-option-to-list-variables-by-type/m-p/611410#M18191</link>
      <description>&lt;P&gt;Or use an index on the (ODS or traditional) output dataset:&lt;/P&gt;
&lt;PRE&gt;ods output variables=vars(&lt;STRONG&gt;index=(type)&lt;/STRONG&gt; drop=member);
proc contents data=sashelp.class;
run;

proc print data=vars noobs;
&lt;STRONG&gt;by type;&lt;/STRONG&gt;
run;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Dec 2019 17:42:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Proc-contents-is-there-an-option-to-list-variables-by-type/m-p/611410#M18191</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2019-12-12T17:42:04Z</dc:date>
    </item>
    <item>
      <title>Re: Proc contents - is there an option to list variables by type (numeric or character)?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Proc-contents-is-there-an-option-to-list-variables-by-type/m-p/611417#M18192</link>
      <description>&lt;P&gt;Thank you, this is what I was able to use successfully. I appreciate the help!&lt;/P&gt;</description>
      <pubDate>Thu, 12 Dec 2019 18:53:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Proc-contents-is-there-an-option-to-list-variables-by-type/m-p/611417#M18192</guid>
      <dc:creator>accintron</dc:creator>
      <dc:date>2019-12-12T18:53:26Z</dc:date>
    </item>
    <item>
      <title>Re: Proc contents - is there an option to list variables by type (numeric or character)?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Proc-contents-is-there-an-option-to-list-variables-by-type/m-p/611418#M18193</link>
      <description>&lt;P&gt;Thanks for your reply! While I didn't go this route, it was helpful to try this option.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Dec 2019 18:54:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Proc-contents-is-there-an-option-to-list-variables-by-type/m-p/611418#M18193</guid>
      <dc:creator>accintron</dc:creator>
      <dc:date>2019-12-12T18:54:05Z</dc:date>
    </item>
    <item>
      <title>Re: Proc contents - is there an option to list variables by type (numeric or character)?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Proc-contents-is-there-an-option-to-list-variables-by-type/m-p/611419#M18194</link>
      <description>&lt;P&gt;Thank you for your reply!&lt;/P&gt;</description>
      <pubDate>Thu, 12 Dec 2019 18:54:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Proc-contents-is-there-an-option-to-list-variables-by-type/m-p/611419#M18194</guid>
      <dc:creator>accintron</dc:creator>
      <dc:date>2019-12-12T18:54:22Z</dc:date>
    </item>
  </channel>
</rss>

