<?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: How to change small letter variables to capital letter in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/How-to-change-small-letter-variables-to-capital-letter/m-p/686787#M24469</link>
    <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc freq data=alld;
table week / NOCUM plots=freqplot;
label week='Week';
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Fri, 25 Sep 2020 17:21:06 GMT</pubDate>
    <dc:creator>PaigeMiller</dc:creator>
    <dc:date>2020-09-25T17:21:06Z</dc:date>
    <item>
      <title>How to change small letter variables to capital letter</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-change-small-letter-variables-to-capital-letter/m-p/686786#M24468</link>
      <description>&lt;P&gt;How to I change "week" to capital letter "Week" in&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc freq data=alld;&lt;BR /&gt;table Week / NOCUM plots=freqplot;&lt;BR /&gt;run;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;week&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Frequency&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Percent&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;4&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;2&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;2&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;2&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;3&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;5&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Fri, 25 Sep 2020 17:19:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-change-small-letter-variables-to-capital-letter/m-p/686786#M24468</guid>
      <dc:creator>hjjijkkl</dc:creator>
      <dc:date>2020-09-25T17:19:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to change small letter variables to capital letter</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-change-small-letter-variables-to-capital-letter/m-p/686787#M24469</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc freq data=alld;
table week / NOCUM plots=freqplot;
label week='Week';
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 25 Sep 2020 17:21:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-change-small-letter-variables-to-capital-letter/m-p/686787#M24469</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-09-25T17:21:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to change small letter variables to capital letter</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-change-small-letter-variables-to-capital-letter/m-p/686792#M24471</link>
      <description>That didn't change it. this is the output from the code above. it only changed the label for freq count to Weeks.&lt;BR /&gt;&lt;BR /&gt;Weeks&lt;BR /&gt;week Frequency Percent&lt;BR /&gt;12 49 1&lt;BR /&gt;24 91 2&lt;BR /&gt;</description>
      <pubDate>Fri, 25 Sep 2020 17:38:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-change-small-letter-variables-to-capital-letter/m-p/686792#M24471</guid>
      <dc:creator>hjjijkkl</dc:creator>
      <dc:date>2020-09-25T17:38:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to change small letter variables to capital letter</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-change-small-letter-variables-to-capital-letter/m-p/686797#M24474</link>
      <description>Solved.</description>
      <pubDate>Fri, 25 Sep 2020 18:12:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-change-small-letter-variables-to-capital-letter/m-p/686797#M24474</guid>
      <dc:creator>hjjijkkl</dc:creator>
      <dc:date>2020-09-25T18:12:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to change small letter variables to capital letter</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-change-small-letter-variables-to-capital-letter/m-p/690785#M24769</link>
      <description>&lt;P&gt;Like this?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data alld ;
input Week ;
datalines;
1
1
1
1
2
3
run;

proc freq data=alld;
tables Week / NOCUM plots=freqplot;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 11 Oct 2020 12:44:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-change-small-letter-variables-to-capital-letter/m-p/690785#M24769</guid>
      <dc:creator>Norman21</dc:creator>
      <dc:date>2020-10-11T12:44:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to change small letter variables to capital letter</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-change-small-letter-variables-to-capital-letter/m-p/690787#M24770</link>
      <description>&lt;P&gt;Please mark the post that solved it as the Accepted Solution.&lt;/P&gt;</description>
      <pubDate>Sun, 11 Oct 2020 13:18:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-change-small-letter-variables-to-capital-letter/m-p/690787#M24770</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-10-11T13:18:01Z</dc:date>
    </item>
  </channel>
</rss>

