<?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>Thema "Re: Neue Datums Spalte erzeugen" in CoDe SAS German</title>
    <link>https://communities.sas.com/t5/CoDe-SAS-German/Neue-Datums-Spalte-erzeugen/m-p/554985#M2510</link>
    <description>&lt;P&gt;Hier ein kleines Beispiel: Die Funktion input bekommt die Text-Version des Datums und ein passendes Einleseformat. Durch die Format-Anweisung wird ein lesbares Datum angezeigt.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data Datum;
   length TextDatum $ 10 RichtigesDatum 8;
   format RichtigesDatum ddmmyyp10.;

   TextDatum = '10.11.2018';
   RichtigesDatum = input(TextDatum, ddmmyy10.);
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Tue, 30 Apr 2019 11:52:44 GMT</pubDate>
    <dc:creator>andreas_lds</dc:creator>
    <dc:date>2019-04-30T11:52:44Z</dc:date>
    <item>
      <title>Neue Datums Spalte erzeugen</title>
      <link>https://communities.sas.com/t5/CoDe-SAS-German/Neue-Datums-Spalte-erzeugen/m-p/554963#M2506</link>
      <description>&lt;P&gt;Hallo,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ich möchte eine&amp;nbsp;neue &lt;STRONG&gt;Datumsspalte&lt;/STRONG&gt; erzeugen. In diese sollen die Daten (Datum)&amp;nbsp;aus einer bestehenden&amp;nbsp;alphanumerischen Spalte übertragen werden. Die neue Spalte soll so formatiert sein, dass die Daten (Datum) in&amp;nbsp;der Form dd.mm.yyyy erscheinen.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Viele Grüße und Danke vorab!&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2019 09:45:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/CoDe-SAS-German/Neue-Datums-Spalte-erzeugen/m-p/554963#M2506</guid>
      <dc:creator>Katrin1606</dc:creator>
      <dc:date>2019-04-30T09:45:27Z</dc:date>
    </item>
    <item>
      <title>Re: Neue Datums Spalte erzeugen</title>
      <link>https://communities.sas.com/t5/CoDe-SAS-German/Neue-Datums-Spalte-erzeugen/m-p/554965#M2507</link>
      <description>&lt;P&gt;Bitte poste mal ein paar Beispiele vom Inhalt der Spalte, damit Code vorgeschlagen werden kann. Normalerweise reicht es aus die input-Funktion mit entsprechendem Format zu verwenden und dann mittels Format-Anweisung der Variable das Format ddmmyyp10 zuzuweisen.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2019 09:52:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/CoDe-SAS-German/Neue-Datums-Spalte-erzeugen/m-p/554965#M2507</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2019-04-30T09:52:11Z</dc:date>
    </item>
    <item>
      <title>Re: Neue Datums Spalte erzeugen</title>
      <link>https://communities.sas.com/t5/CoDe-SAS-German/Neue-Datums-Spalte-erzeugen/m-p/554967#M2508</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;danke für die schnelle Antwort. In der bestehenden Datumsspalte (alphanumerisch, length 10, Format $10) steht nur jeweils Daten (also Datum) z.B. 10.11.2018.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Viele Grüße&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 30 Apr 2019 09:56:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/CoDe-SAS-German/Neue-Datums-Spalte-erzeugen/m-p/554967#M2508</guid>
      <dc:creator>Katrin1606</dc:creator>
      <dc:date>2019-04-30T09:56:18Z</dc:date>
    </item>
    <item>
      <title>Re: Neue Datums Spalte erzeugen</title>
      <link>https://communities.sas.com/t5/CoDe-SAS-German/Neue-Datums-Spalte-erzeugen/m-p/554972#M2509</link>
      <description>&lt;P style="margin: 0cm 0cm 0pt;"&gt;&lt;FONT color="#000000" face="Arial" size="2"&gt;Wichtig ist, dass die Spalte das Format “Datum” hat und nicht nur numerisch ist. &lt;/FONT&gt;&lt;/P&gt;
&lt;P style="margin: 0cm 0cm 0pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0cm 0cm 0pt;"&gt;&lt;FONT color="#000000" face="Arial" size="2"&gt;In der bestehenden Datumsspalte (alphanumerisch, length 10, Format $10) steht nur jeweils Daten (also Datum) z.B. 10.11.2018.&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2019 10:05:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/CoDe-SAS-German/Neue-Datums-Spalte-erzeugen/m-p/554972#M2509</guid>
      <dc:creator>Katrin1606</dc:creator>
      <dc:date>2019-04-30T10:05:45Z</dc:date>
    </item>
    <item>
      <title>Re: Neue Datums Spalte erzeugen</title>
      <link>https://communities.sas.com/t5/CoDe-SAS-German/Neue-Datums-Spalte-erzeugen/m-p/554985#M2510</link>
      <description>&lt;P&gt;Hier ein kleines Beispiel: Die Funktion input bekommt die Text-Version des Datums und ein passendes Einleseformat. Durch die Format-Anweisung wird ein lesbares Datum angezeigt.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data Datum;
   length TextDatum $ 10 RichtigesDatum 8;
   format RichtigesDatum ddmmyyp10.;

   TextDatum = '10.11.2018';
   RichtigesDatum = input(TextDatum, ddmmyy10.);
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 30 Apr 2019 11:52:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/CoDe-SAS-German/Neue-Datums-Spalte-erzeugen/m-p/554985#M2510</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2019-04-30T11:52:44Z</dc:date>
    </item>
  </channel>
</rss>

