<?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: Adding extra rows in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Adding-extra-rows/m-p/559868#M156410</link>
    <description>&lt;P&gt;One idea: do a loop that counts to 100 for every observation read.&lt;/P&gt;
&lt;P&gt;Note that just adding "empty" records only wastes space, but achieves nothing else that has any information value.&lt;/P&gt;</description>
    <pubDate>Sat, 18 May 2019 11:38:37 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2019-05-18T11:38:37Z</dc:date>
    <item>
      <title>Adding extra rows</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Adding-extra-rows/m-p/559862#M156406</link>
      <description>&lt;P&gt;how to add extra rows to the existing data set in sas university&amp;nbsp; edition?&lt;/P&gt;
&lt;P&gt;ex- i have only 5 rows , how can i automatcally increase rows with empty values&amp;nbsp;&lt;/P&gt;
&lt;P&gt;how to make the 5 rows as 500 rows&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 18 May 2019 11:38:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Adding-extra-rows/m-p/559862#M156406</guid>
      <dc:creator>vikram2000</dc:creator>
      <dc:date>2019-05-18T11:38:13Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Univ Edition</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Adding-extra-rows/m-p/559866#M156408</link>
      <description>&lt;P&gt;please try this example, hope it helps&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
set sashelp.class end=eof;
output;
if eof then do i = 1 to 500;
call missing (name,sex,age,height,weight);
output;
end;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 18 May 2019 11:36:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Adding-extra-rows/m-p/559866#M156408</guid>
      <dc:creator>Jagadishkatam</dc:creator>
      <dc:date>2019-05-18T11:36:24Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Univ Edition</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Adding-extra-rows/m-p/559867#M156409</link>
      <description>&lt;P&gt;Hi and welcome to the SAS Communities &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can do something like this&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input id $ var;
datalines;
1 1
2 2
3 3
4 4
5 5
;

data want(drop=i);
   set have end=lr;
   output;
   if lr then do;
   call missing (of _numeric_);
   call missing (of _character_);
      do i=1 to 495;
         output;
      end;
   end;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 18 May 2019 11:36:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Adding-extra-rows/m-p/559867#M156409</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2019-05-18T11:36:51Z</dc:date>
    </item>
    <item>
      <title>Re: Adding extra rows</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Adding-extra-rows/m-p/559868#M156410</link>
      <description>&lt;P&gt;One idea: do a loop that counts to 100 for every observation read.&lt;/P&gt;
&lt;P&gt;Note that just adding "empty" records only wastes space, but achieves nothing else that has any information value.&lt;/P&gt;</description>
      <pubDate>Sat, 18 May 2019 11:38:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Adding-extra-rows/m-p/559868#M156410</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-05-18T11:38:37Z</dc:date>
    </item>
    <item>
      <title>Re: Adding extra rows</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Adding-extra-rows/m-p/559869#M156411</link>
      <description>&lt;P&gt;PS I corrected your meaningless subject line.&lt;/P&gt;</description>
      <pubDate>Sat, 18 May 2019 11:39:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Adding-extra-rows/m-p/559869#M156411</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-05-18T11:39:33Z</dc:date>
    </item>
  </channel>
</rss>

