<?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: Create a dataset with date information in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Create-a-dataset-with-date-information/m-p/327946#M73201</link>
    <description>&lt;P&gt;The only thing I'd add would be&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;format date date9.;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;for better readability. &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 27 Jan 2017 08:08:03 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2017-01-27T08:08:03Z</dc:date>
    <item>
      <title>Create a dataset with date information</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-a-dataset-with-date-information/m-p/327878#M73187</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How could I create a dataset with three columns like below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;LOC_ID | &amp;nbsp;Date | Demand&lt;/P&gt;&lt;P&gt;..... &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; | &amp;nbsp;.... &amp;nbsp; &amp;nbsp;| ....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Where demand is always 0 and Date is from 01JAN2017 to 30JUN2017 and LOC_ID is always C1.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jan 2017 22:36:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-a-dataset-with-date-information/m-p/327878#M73187</guid>
      <dc:creator>Crubal</dc:creator>
      <dc:date>2017-01-26T22:36:35Z</dc:date>
    </item>
    <item>
      <title>Re: Create a dataset with date information</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-a-dataset-with-date-information/m-p/327883#M73188</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
length LOC_ID $8 Date Demand 8;
LOC_ID = "C1";
demand = 0;
do Date = '01JAN2017'd to '30JUN2017'd;
	output;
	end;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 26 Jan 2017 22:51:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-a-dataset-with-date-information/m-p/327883#M73188</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2017-01-26T22:51:25Z</dc:date>
    </item>
    <item>
      <title>Re: Create a dataset with date information</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Create-a-dataset-with-date-information/m-p/327946#M73201</link>
      <description>&lt;P&gt;The only thing I'd add would be&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;format date date9.;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;for better readability. &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Jan 2017 08:08:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Create-a-dataset-with-date-information/m-p/327946#M73201</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-01-27T08:08:03Z</dc:date>
    </item>
  </channel>
</rss>

