<?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: SAS code to create a blank dataset with 5 variables and 10 observations. in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/SAS-code-to-create-a-blank-dataset-with-5-variables-and-10/m-p/360787#M274697</link>
    <description>&lt;P&gt;Yes..Correct..&lt;/P&gt;</description>
    <pubDate>Tue, 23 May 2017 15:13:52 GMT</pubDate>
    <dc:creator>Ankur32</dc:creator>
    <dc:date>2017-05-23T15:13:52Z</dc:date>
    <item>
      <title>SAS code to create a blank dataset with 5 variables and 10 observations.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-code-to-create-a-blank-dataset-with-5-variables-and-10/m-p/360785#M274695</link>
      <description>&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;can someone suggest me a sas code&amp;nbsp;to create a blank dataset with 5 variables and 10 observations.&lt;/P&gt;&lt;P&gt;Its urgent..!!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks in advance&lt;/P&gt;</description>
      <pubDate>Tue, 23 May 2017 15:11:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-code-to-create-a-blank-dataset-with-5-variables-and-10/m-p/360785#M274695</guid>
      <dc:creator>Ankur32</dc:creator>
      <dc:date>2017-05-23T15:11:38Z</dc:date>
    </item>
    <item>
      <title>Re: SAS code to create a blank dataset with 5 variables and 10 observations.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-code-to-create-a-blank-dataset-with-5-variables-and-10/m-p/360786#M274696</link>
      <description>&lt;P&gt;When you say blank, do you mean a dataset with all missing values?&lt;/P&gt;</description>
      <pubDate>Tue, 23 May 2017 15:12:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-code-to-create-a-blank-dataset-with-5-variables-and-10/m-p/360786#M274696</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2017-05-23T15:12:28Z</dc:date>
    </item>
    <item>
      <title>Re: SAS code to create a blank dataset with 5 variables and 10 observations.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-code-to-create-a-blank-dataset-with-5-variables-and-10/m-p/360787#M274697</link>
      <description>&lt;P&gt;Yes..Correct..&lt;/P&gt;</description>
      <pubDate>Tue, 23 May 2017 15:13:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-code-to-create-a-blank-dataset-with-5-variables-and-10/m-p/360787#M274697</guid>
      <dc:creator>Ankur32</dc:creator>
      <dc:date>2017-05-23T15:13:52Z</dc:date>
    </item>
    <item>
      <title>Re: SAS code to create a blank dataset with 5 variables and 10 observations.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-code-to-create-a-blank-dataset-with-5-variables-and-10/m-p/360788#M274698</link>
      <description>&lt;P&gt;If it has 10 observations, it sure won't be "blank". In terms of datasets, I would reserve that word for a dataset that has only structure, but no observations.&lt;/P&gt;
&lt;P&gt;If you just want 10 observations of missing variables, write a data step that has a format statement for your variables and does 10 outputs.&lt;/P&gt;</description>
      <pubDate>Tue, 23 May 2017 15:14:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-code-to-create-a-blank-dataset-with-5-variables-and-10/m-p/360788#M274698</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-05-23T15:14:41Z</dc:date>
    </item>
    <item>
      <title>Re: SAS code to create a blank dataset with 5 variables and 10 observations.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-code-to-create-a-blank-dataset-with-5-variables-and-10/m-p/360789#M274699</link>
      <description>&lt;P&gt;Here is one way:&lt;/P&gt;
&lt;PRE&gt;data want;
  format a b c $2.;
  format d e 8.;
  do _n_=1 to 10;
    output;
  end;
run;
&lt;/PRE&gt;
&lt;P&gt;Art, CEO, AnalystFinder.com&lt;/P&gt;</description>
      <pubDate>Tue, 23 May 2017 15:15:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-code-to-create-a-blank-dataset-with-5-variables-and-10/m-p/360789#M274699</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2017-05-23T15:15:00Z</dc:date>
    </item>
    <item>
      <title>Re: SAS code to create a blank dataset with 5 variables and 10 observations.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-code-to-create-a-blank-dataset-with-5-variables-and-10/m-p/360794#M274700</link>
      <description>&lt;P&gt;Thank you so much.. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 23 May 2017 15:23:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-code-to-create-a-blank-dataset-with-5-variables-and-10/m-p/360794#M274700</guid>
      <dc:creator>Ankur32</dc:creator>
      <dc:date>2017-05-23T15:23:20Z</dc:date>
    </item>
    <item>
      <title>Re: SAS code to create a blank dataset with 5 variables and 10 observations.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-code-to-create-a-blank-dataset-with-5-variables-and-10/m-p/360821#M274701</link>
      <description>&lt;P&gt;Seriously though, why are you creating blank datasets. &amp;nbsp;This not only creates this work (and question) but also creates the other question of how to remove them per you other post. &amp;nbsp;What is it your trying to do, there will be far better methods than creating loads of blank datasets and then deleting them, thats just a waste of processing power.&lt;/P&gt;</description>
      <pubDate>Tue, 23 May 2017 16:09:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-code-to-create-a-blank-dataset-with-5-variables-and-10/m-p/360821#M274701</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-05-23T16:09:04Z</dc:date>
    </item>
    <item>
      <title>Re: SAS code to create a blank dataset with 5 variables and 10 observations.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-code-to-create-a-blank-dataset-with-5-variables-and-10/m-p/362675#M274702</link>
      <description>&lt;P&gt;/* you can use the below simple code as well */&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;data z;&lt;BR /&gt;input id1$ id2$ id3$ id4$ id5$;&lt;BR /&gt;cards;&lt;BR /&gt;a b c d e&lt;BR /&gt;a b c d e&lt;BR /&gt;a b c d e&lt;BR /&gt;a b c d e&lt;BR /&gt;a b c d e&lt;BR /&gt;a b c d e&lt;BR /&gt;a b c d e&lt;BR /&gt;a b c d e&lt;BR /&gt;a b c d e&lt;BR /&gt;a b c d e&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data blank;&lt;BR /&gt;set z;&lt;/P&gt;&lt;P&gt;id1="";&lt;BR /&gt;id2="";&lt;BR /&gt;id3="";&lt;BR /&gt;id4="";&lt;BR /&gt;id5="";&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Tue, 30 May 2017 11:34:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-code-to-create-a-blank-dataset-with-5-variables-and-10/m-p/362675#M274702</guid>
      <dc:creator>shivamarrora0</dc:creator>
      <dc:date>2017-05-30T11:34:24Z</dc:date>
    </item>
    <item>
      <title>Re: SAS code to create a blank dataset with 5 variables and 10 observations.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-code-to-create-a-blank-dataset-with-5-variables-and-10/m-p/362716#M274703</link>
      <description>&lt;P&gt;Why?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
  length var1-var5 $10;
  do _n_=1 to 10; output; end;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 30 May 2017 13:52:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-code-to-create-a-blank-dataset-with-5-variables-and-10/m-p/362716#M274703</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2017-05-30T13:52:41Z</dc:date>
    </item>
    <item>
      <title>Re: SAS code to create a blank dataset with 5 variables and 10 observations.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-code-to-create-a-blank-dataset-with-5-variables-and-10/m-p/362733#M274704</link>
      <description>&lt;P&gt;Tom,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am new to SAS i just tried to create blank dataset with 5 var and 10 obs.&lt;/P&gt;</description>
      <pubDate>Tue, 30 May 2017 14:32:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-code-to-create-a-blank-dataset-with-5-variables-and-10/m-p/362733#M274704</guid>
      <dc:creator>shivamarrora0</dc:creator>
      <dc:date>2017-05-30T14:32:31Z</dc:date>
    </item>
  </channel>
</rss>

