<?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 Can I add a blank line to n-th row? in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Can-I-add-a-blank-line-to-n-th-row/m-p/594260#M15646</link>
    <description>&lt;P&gt;I have a dataset with (let's say) 100 lines. Can I add a blank line to 50th (a random number) row? Then the set would be with 101 lines. Would it be possible simply? Just so you know, this dataset is my final output (e.g., regression result output). So I want it to be more readable by adding a blank line properly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 05 Oct 2019 07:04:48 GMT</pubDate>
    <dc:creator>braam</dc:creator>
    <dc:date>2019-10-05T07:04:48Z</dc:date>
    <item>
      <title>Can I add a blank line to n-th row?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Can-I-add-a-blank-line-to-n-th-row/m-p/594260#M15646</link>
      <description>&lt;P&gt;I have a dataset with (let's say) 100 lines. Can I add a blank line to 50th (a random number) row? Then the set would be with 101 lines. Would it be possible simply? Just so you know, this dataset is my final output (e.g., regression result output). So I want it to be more readable by adding a blank line properly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 05 Oct 2019 07:04:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Can-I-add-a-blank-line-to-n-th-row/m-p/594260#M15646</guid>
      <dc:creator>braam</dc:creator>
      <dc:date>2019-10-05T07:04:48Z</dc:date>
    </item>
    <item>
      <title>Re: Can I add a blank line to n-th row?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Can-I-add-a-blank-line-to-n-th-row/m-p/594261#M15647</link>
      <description>&lt;P&gt;Yes, you can.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
set have;
output;
if _n_ = 50
then do;
  call missing(of _all_);
  output;
end;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 05 Oct 2019 07:43:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Can-I-add-a-blank-line-to-n-th-row/m-p/594261#M15647</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-10-05T07:43:14Z</dc:date>
    </item>
    <item>
      <title>Re: Can I add a blank line to n-th row?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Can-I-add-a-blank-line-to-n-th-row/m-p/594275#M15648</link>
      <description>&lt;P&gt;HI:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; And, in the interest of completeness, if you just want a report and to add blank lines for readability purposes, you can do that with PROC PRINT without creating a copy of the original data, as shown below:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="print_blank.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/32987i447F52EF30777854/image-size/large?v=v2&amp;amp;px=999" role="button" title="print_blank.png" alt="print_blank.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cynthia&lt;/P&gt;</description>
      <pubDate>Sat, 05 Oct 2019 15:31:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Can-I-add-a-blank-line-to-n-th-row/m-p/594275#M15648</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2019-10-05T15:31:14Z</dc:date>
    </item>
  </channel>
</rss>

