<?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: list of variable in summary in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/list-of-variable-in-summary/m-p/178751#M34166</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;SPAN class="j-post-author "&gt;&lt;STRONG&gt;&lt;A _jive_internal="true" class="jiveTT-hover-user jive-username-link" data-avatarid="-1" data-externalid="" data-presence="null" data-userid="260198" data-username="ballardw" href="https://communities.sas.com/people/ballardw" id="jive-26019828262768245836186"&gt;ballardw&lt;/A&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In proc contens output dataset variable names appearing in the same case as appeared in sources dataset. As per your suggestion it would be better to use upcase function and use upper case variable names. Please advise If I did not understand your question correctly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 09 Oct 2014 19:45:07 GMT</pubDate>
    <dc:creator>stat_sas</dc:creator>
    <dc:date>2014-10-09T19:45:07Z</dc:date>
    <item>
      <title>list of variable in summary</title>
      <link>https://communities.sas.com/t5/SAS-Programming/list-of-variable-in-summary/m-p/178747#M34162</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi to all,&lt;/P&gt;&lt;P&gt;I have to use the proc summary with a lot of ID variables.&lt;/P&gt;&lt;P&gt;How can I save the list of variables&amp;nbsp; in the macro variable?&lt;/P&gt;&lt;P&gt;is there one way to have a macro variables with a list of variable of dataset&amp;nbsp; but without the list in the&amp;nbsp; VAR ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;proc summary data = one&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var a b;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; id &amp;amp;listvariable.;&lt;/STRONG&gt;&lt;EM&gt; in this macro variable, how can i put the list of variable of the data set one without the a,b variable&amp;nbsp; into the&amp;nbsp; VAR field?&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;output = have;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Oct 2014 19:00:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/list-of-variable-in-summary/m-p/178747#M34162</guid>
      <dc:creator>Rakeon</dc:creator>
      <dc:date>2014-10-09T19:00:20Z</dc:date>
    </item>
    <item>
      <title>Re: list of variable in summary</title>
      <link>https://communities.sas.com/t5/SAS-Programming/list-of-variable-in-summary/m-p/178748#M34163</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;proc contents data=one out=varnames(keep=name);&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sql;&lt;BR /&gt;select name into :listvariable separated by ' ' from varnames&lt;BR /&gt;where name not in ('a','b');&lt;BR /&gt;quit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%put &amp;amp;listvariable;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Oct 2014 19:07:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/list-of-variable-in-summary/m-p/178748#M34163</guid>
      <dc:creator>stat_sas</dc:creator>
      <dc:date>2014-10-09T19:07:33Z</dc:date>
    </item>
    <item>
      <title>Re: list of variable in summary</title>
      <link>https://communities.sas.com/t5/SAS-Programming/list-of-variable-in-summary/m-p/178749#M34164</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Oct 2014 19:18:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/list-of-variable-in-summary/m-p/178749#M34164</guid>
      <dc:creator>Rakeon</dc:creator>
      <dc:date>2014-10-09T19:18:50Z</dc:date>
    </item>
    <item>
      <title>Re: list of variable in summary</title>
      <link>https://communities.sas.com/t5/SAS-Programming/list-of-variable-in-summary/m-p/178750#M34165</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Need to use the upper case versions of the variable names I believe.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Oct 2014 19:19:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/list-of-variable-in-summary/m-p/178750#M34165</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2014-10-09T19:19:02Z</dc:date>
    </item>
    <item>
      <title>Re: list of variable in summary</title>
      <link>https://communities.sas.com/t5/SAS-Programming/list-of-variable-in-summary/m-p/178751#M34166</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;SPAN class="j-post-author "&gt;&lt;STRONG&gt;&lt;A _jive_internal="true" class="jiveTT-hover-user jive-username-link" data-avatarid="-1" data-externalid="" data-presence="null" data-userid="260198" data-username="ballardw" href="https://communities.sas.com/people/ballardw" id="jive-26019828262768245836186"&gt;ballardw&lt;/A&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In proc contens output dataset variable names appearing in the same case as appeared in sources dataset. As per your suggestion it would be better to use upcase function and use upper case variable names. Please advise If I did not understand your question correctly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Oct 2014 19:45:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/list-of-variable-in-summary/m-p/178751#M34166</guid>
      <dc:creator>stat_sas</dc:creator>
      <dc:date>2014-10-09T19:45:07Z</dc:date>
    </item>
    <item>
      <title>Re: list of variable in summary</title>
      <link>https://communities.sas.com/t5/SAS-Programming/list-of-variable-in-summary/m-p/178752#M34167</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ballardw,&lt;/P&gt;&lt;P&gt;I also got the problems with the names of variable, &lt;/P&gt;&lt;P&gt;and I resolved with yor suggestion.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks you!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Oct 2014 06:55:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/list-of-variable-in-summary/m-p/178752#M34167</guid>
      <dc:creator>Rakeon</dc:creator>
      <dc:date>2014-10-11T06:55:58Z</dc:date>
    </item>
  </channel>
</rss>

