<?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: how to insert a blank row in a dataset in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/how-to-insert-a-blank-row-in-a-dataset/m-p/508969#M136754</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/31304"&gt;@PeterClemmensen&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;What kind of graph requires a blank row?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I am guessing one that the data is coming from a spreadsheet and is structured poorly for SAS graphing and this an attempt to translate spreadsheet graphing practices to a SAS graphic procedure.&lt;/P&gt;</description>
    <pubDate>Tue, 30 Oct 2018 22:53:04 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2018-10-30T22:53:04Z</dc:date>
    <item>
      <title>how to insert a blank row in a dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-insert-a-blank-row-in-a-dataset/m-p/508917#M136724</link>
      <description>&lt;P&gt;Dear,&lt;/P&gt;
&lt;P&gt;I need to insert two blank rows in my data set to use it for a graph. I am getting the output i need from data two, but is there a better way to program as there are more variables in actual data set. Thank you&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;output needed&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;a 1 c a&lt;BR /&gt;a&lt;BR /&gt;
b 2 c a
c 3 c a
d 4 c a
e 5 c a
g 6 c a&lt;/CODE&gt;&lt;/PRE&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data one;
input a $ b c $  d $;
datalines;
a 1 c a
b 2 c a
c 3 c a
d 4 c a
e 5 c a
g 6 c a
;

data two;
set one;
if _n_=1 then output;
if _n_=1 then do;b=.;c='';d='';output;end;
if _n_=1 then do;a='';b=.;c='';d='';output;end;
else output;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 30 Oct 2018 20:06:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-insert-a-blank-row-in-a-dataset/m-p/508917#M136724</guid>
      <dc:creator>knveraraju91</dc:creator>
      <dc:date>2018-10-30T20:06:49Z</dc:date>
    </item>
    <item>
      <title>Re: how to insert a blank row in a dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-insert-a-blank-row-in-a-dataset/m-p/508920#M136727</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data two1;
set one;
if _n_=1 then do;
output;
call missing(b,c,d);
output;
call missing(of _all_);
output;
end;
else output;
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 30 Oct 2018 20:10:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-insert-a-blank-row-in-a-dataset/m-p/508920#M136727</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2018-10-30T20:10:50Z</dc:date>
    </item>
    <item>
      <title>Re: how to insert a blank row in a dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-insert-a-blank-row-in-a-dataset/m-p/508927#M136732</link>
      <description>&lt;P&gt;What kind of graph requires a blank row?&lt;/P&gt;</description>
      <pubDate>Tue, 30 Oct 2018 20:20:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-insert-a-blank-row-in-a-dataset/m-p/508927#M136732</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2018-10-30T20:20:38Z</dc:date>
    </item>
    <item>
      <title>Re: how to insert a blank row in a dataset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-insert-a-blank-row-in-a-dataset/m-p/508969#M136754</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/31304"&gt;@PeterClemmensen&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;What kind of graph requires a blank row?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I am guessing one that the data is coming from a spreadsheet and is structured poorly for SAS graphing and this an attempt to translate spreadsheet graphing practices to a SAS graphic procedure.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Oct 2018 22:53:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-insert-a-blank-row-in-a-dataset/m-p/508969#M136754</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-10-30T22:53:04Z</dc:date>
    </item>
  </channel>
</rss>

