<?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: Read German date format in data step in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Read-German-date-format-in-data-step/m-p/413999#M67483</link>
    <description>Thanks a lot!&lt;BR /&gt;</description>
    <pubDate>Thu, 16 Nov 2017 13:56:36 GMT</pubDate>
    <dc:creator>dirks</dc:creator>
    <dc:date>2017-11-16T13:56:36Z</dc:date>
    <item>
      <title>Read German date format in data step</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Read-German-date-format-in-data-step/m-p/413989#M67479</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I m trying to do this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data temp;
infile datalines;
input datum :  DATE10.
      value1 COMMAX12.2
      value2 COMMAX12.2
      value3 COMMAX12.2
      value4 COMMAX12.2;
datalines;
01.11.2017	366.020,57	273.972,60	83942020,57	83,94	

;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;But I am not able to read the correct date.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can someone help me out please?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;Dirk&lt;/P&gt;</description>
      <pubDate>Thu, 16 Nov 2017 13:29:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Read-German-date-format-in-data-step/m-p/413989#M67479</guid>
      <dc:creator>dirks</dc:creator>
      <dc:date>2017-11-16T13:29:37Z</dc:date>
    </item>
    <item>
      <title>Re: Read German date format in data step</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Read-German-date-format-in-data-step/m-p/413992#M67480</link>
      <description>Hi:&lt;BR /&gt;  Suggest you look up INFORMATS for dates. The form that your date is in does not appear to fall into the DATE normal representation. You might need to switch to a different date informat. Also, you need the colon modifier  for ALL of your VALUE variables, too (not just the DATUM variable). Anything you read with an informat should use the : modifier.&lt;BR /&gt;&lt;BR /&gt;cynthia</description>
      <pubDate>Thu, 16 Nov 2017 13:36:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Read-German-date-format-in-data-step/m-p/413992#M67480</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2017-11-16T13:36:02Z</dc:date>
    </item>
    <item>
      <title>Re: Read German date format in data step</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Read-German-date-format-in-data-step/m-p/413994#M67481</link>
      <description>&lt;P&gt;ddmmyy10. format will do the trick&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data temp;
input datum:ddmmyy10.;
format datum ddmmyy10.;
datalines;
01.11.2017
;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 16 Nov 2017 13:36:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Read-German-date-format-in-data-step/m-p/413994#M67481</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2017-11-16T13:36:29Z</dc:date>
    </item>
    <item>
      <title>Re: Read German date format in data step</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Read-German-date-format-in-data-step/m-p/413999#M67483</link>
      <description>Thanks a lot!&lt;BR /&gt;</description>
      <pubDate>Thu, 16 Nov 2017 13:56:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Read-German-date-format-in-data-step/m-p/413999#M67483</guid>
      <dc:creator>dirks</dc:creator>
      <dc:date>2017-11-16T13:56:36Z</dc:date>
    </item>
    <item>
      <title>Re: Read German date format in data step</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Read-German-date-format-in-data-step/m-p/414001#M67484</link>
      <description>&lt;P&gt;Anytime, glad to help &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Nov 2017 14:00:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Read-German-date-format-in-data-step/m-p/414001#M67484</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2017-11-16T14:00:05Z</dc:date>
    </item>
    <item>
      <title>Re: Read German date format in data step</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Read-German-date-format-in-data-step/m-p/414018#M67486</link>
      <description>&lt;P&gt;To make the displayed format look exactly like the input, use the format&lt;/P&gt;
&lt;PRE&gt;ddmmyyp10.&lt;/PRE&gt;
&lt;P&gt;to replace the slashes with dots.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Nov 2017 14:49:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Read-German-date-format-in-data-step/m-p/414018#M67486</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-11-16T14:49:39Z</dc:date>
    </item>
  </channel>
</rss>

