<?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: Changing the date from dutch to English in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Changing-the-date-from-dutch-to-English/m-p/803129#M316236</link>
    <description>&lt;P&gt;Please show your code.&lt;/P&gt;</description>
    <pubDate>Mon, 21 Mar 2022 15:44:07 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2022-03-21T15:44:07Z</dc:date>
    <item>
      <title>Changing the date from dutch to English</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Changing-the-date-from-dutch-to-English/m-p/803060#M316209</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I was trying to execute the program, the values in the columns m_date and c_date , they are coming in dutch language as:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;21 februari 2022&lt;/STRONG&gt; and&amp;nbsp;&amp;nbsp;&lt;STRONG&gt;02 maart 2022&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Can anyone suggest me on this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Siddhartha&lt;/P&gt;</description>
      <pubDate>Mon, 21 Mar 2022 11:53:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Changing-the-date-from-dutch-to-English/m-p/803060#M316209</guid>
      <dc:creator>siddhu1</dc:creator>
      <dc:date>2022-03-21T11:53:34Z</dc:date>
    </item>
    <item>
      <title>Re: Changing the date from dutch to English</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Changing-the-date-from-dutch-to-English/m-p/803062#M316210</link>
      <description>Are the variables m_date and c_date character types? Or is it a numeric type?&lt;BR /&gt;And what do you want to do with this date in Dutch notation, e.g. 21FEB2022?&lt;BR /&gt;If it is a character type, you can use the input function to convert it to a SAS date value, and if it is a numeric type, you can apply a different format to display it as desired.&lt;BR /&gt;</description>
      <pubDate>Mon, 21 Mar 2022 12:07:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Changing-the-date-from-dutch-to-English/m-p/803062#M316210</guid>
      <dc:creator>japelin</dc:creator>
      <dc:date>2022-03-21T12:07:39Z</dc:date>
    </item>
    <item>
      <title>Re: Changing the date from dutch to English</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Changing-the-date-from-dutch-to-English/m-p/803083#M316222</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/375476"&gt;@siddhu1&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;SAS stores dates with reference to January 1,1960. So it is easy to display the date as per your need.&lt;BR /&gt;If you are getting Dutch dates / times then either your system is set to use that time zone or the tz option has been used to set that particular time zone in the code. Using the code example below you can display the date/ time values as per per your needs&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;option tz='America/Detroit';
data _Null_;
format dt1 datetime20.;
dt1=datetime();
put dt1=;
run;
option tz='Europe/Amsterdam';
data _Null_;
format dt1 datetime20.;
dt1=datetime();
put dt1=;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If you do not want to follow this approach, then discuss the issue with your SAS Administrator / OS Administrator.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Mar 2022 14:44:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Changing-the-date-from-dutch-to-English/m-p/803083#M316222</guid>
      <dc:creator>Sajid01</dc:creator>
      <dc:date>2022-03-21T14:44:08Z</dc:date>
    </item>
    <item>
      <title>Re: Changing the date from dutch to English</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Changing-the-date-from-dutch-to-English/m-p/803115#M316234</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Let's not forget Dutch is a beautiful language and the Unites States&amp;nbsp;had almost spoken Dutch if history had been a little different.&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;. (I am Flemish / Belgian by the way, but we also speak Dutch)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Apart from that ...&lt;BR /&gt;Check if your numeric variable has a Dutch (European) date format, like :&lt;BR /&gt;* EURDFWKXw. Format&lt;BR /&gt;* EURDFWDXw. Format&lt;BR /&gt;* EURDFDWNw. Format&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also check the value of your LOCALE= option.&lt;BR /&gt;And run this code (and check the LOG):&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc options GROUP=LANGUAGECONTROL ;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Koen&lt;/P&gt;</description>
      <pubDate>Mon, 21 Mar 2022 15:29:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Changing-the-date-from-dutch-to-English/m-p/803115#M316234</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2022-03-21T15:29:48Z</dc:date>
    </item>
    <item>
      <title>Re: Changing the date from dutch to English</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Changing-the-date-from-dutch-to-English/m-p/803129#M316236</link>
      <description>&lt;P&gt;Please show your code.&lt;/P&gt;</description>
      <pubDate>Mon, 21 Mar 2022 15:44:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Changing-the-date-from-dutch-to-English/m-p/803129#M316236</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2022-03-21T15:44:07Z</dc:date>
    </item>
  </channel>
</rss>

