<?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: Case change in SAS in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Case-change-in-SAS/m-p/802145#M315765</link>
    <description>&lt;P&gt;These look like variable names.&amp;nbsp; I want to point out that SAS is case-insensitive to names, so that&amp;nbsp;&lt;/P&gt;
&lt;P&gt;first_name, FIRST_NAME, First_Name, and FiRsT_NaMe all represent the same variable.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't know why you want to change the case of the names, but perhaps it is so that printed output looks nicer. In that case, consider using the LABEL statement to add labels for the variables. For example,&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
label first = "First Name"
      last = "Last Name";
first = 1;
last = 10;
run;

proc print data=Have label;
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Tue, 15 Mar 2022 10:40:07 GMT</pubDate>
    <dc:creator>Rick_SAS</dc:creator>
    <dc:date>2022-03-15T10:40:07Z</dc:date>
    <item>
      <title>Case change in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Case-change-in-SAS/m-p/802118#M315746</link>
      <description>&lt;P&gt;hi ,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;i have one final dataset "member" which is creating a flatfile xyz.csv&amp;nbsp;&lt;BR /&gt;now i have few of the fields in xyz.csv&amp;nbsp; of different case i want them to be all in same case as my previous flat file.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;TABLE&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="224.661px" height="30px"&gt;expected&lt;/TD&gt;
&lt;TD width="243.346px" height="30px"&gt;current&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="224.661px" height="30px"&gt;Partner_ID&lt;/TD&gt;
&lt;TD width="243.346px" height="30px"&gt;Partner_ID&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="224.661px" height="30px"&gt;CUST_SEG&lt;/TD&gt;
&lt;TD width="243.346px" height="30px"&gt;cust_seg&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="224.661px" height="30px"&gt;SBSCR_SSN&lt;/TD&gt;
&lt;TD width="243.346px" height="30px"&gt;sbscr_ssn&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="224.661px" height="30px"&gt;depn_nbr&lt;/TD&gt;
&lt;TD width="243.346px" height="30px"&gt;DEPN_NBR&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="224.661px" height="30px"&gt;first_name&lt;/TD&gt;
&lt;TD width="243.346px" height="30px"&gt;FIRST_NAME&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="224.661px" height="30px"&gt;last_name&lt;/TD&gt;
&lt;TD width="243.346px" height="30px"&gt;LAST_NAME&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="224.661px" height="30px"&gt;pat_dob&lt;/TD&gt;
&lt;TD width="243.346px" height="30px"&gt;pat_dob&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="224.661px" height="30px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="243.346px" height="30px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;</description>
      <pubDate>Tue, 15 Mar 2022 10:49:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Case-change-in-SAS/m-p/802118#M315746</guid>
      <dc:creator>librasonali</dc:creator>
      <dc:date>2022-03-15T10:49:48Z</dc:date>
    </item>
    <item>
      <title>Re: Case change in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Case-change-in-SAS/m-p/802128#M315756</link>
      <description>&lt;P&gt;In which step do you define the names in your SAS dataset?&lt;/P&gt;
&lt;P&gt;And how do you create the flat file?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please supply the respective codes, especially the one for the export.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Mar 2022 07:55:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Case-change-in-SAS/m-p/802128#M315756</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2022-03-15T07:55:14Z</dc:date>
    </item>
    <item>
      <title>Re: Case change in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Case-change-in-SAS/m-p/802145#M315765</link>
      <description>&lt;P&gt;These look like variable names.&amp;nbsp; I want to point out that SAS is case-insensitive to names, so that&amp;nbsp;&lt;/P&gt;
&lt;P&gt;first_name, FIRST_NAME, First_Name, and FiRsT_NaMe all represent the same variable.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't know why you want to change the case of the names, but perhaps it is so that printed output looks nicer. In that case, consider using the LABEL statement to add labels for the variables. For example,&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
label first = "First Name"
      last = "Last Name";
first = 1;
last = 10;
run;

proc print data=Have label;
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 15 Mar 2022 10:40:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Case-change-in-SAS/m-p/802145#M315765</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2022-03-15T10:40:07Z</dc:date>
    </item>
    <item>
      <title>Re: Case change in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Case-change-in-SAS/m-p/802146#M315766</link>
      <description>thank you for always helping &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; &lt;BR /&gt;i solved the issue. i was thinking some effective way but i just used as simply. &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 15 Mar 2022 10:48:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Case-change-in-SAS/m-p/802146#M315766</guid>
      <dc:creator>librasonali</dc:creator>
      <dc:date>2022-03-15T10:48:13Z</dc:date>
    </item>
  </channel>
</rss>

