<?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 do you insert a blank line or a blank page for each macro result to the output window in UNI in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/How-do-you-insert-a-blank-line-or-a-blank-page-for-each-macro/m-p/746559#M29436</link>
    <description>&lt;P&gt;This has nothing to do with the macro processor.&lt;/P&gt;
&lt;P&gt;There are already "blank lines" between the outputs. In fact each proc's output is starting on its own page.&amp;nbsp; That is what the FORMFEED ('0C'x) character means.&lt;/P&gt;</description>
    <pubDate>Tue, 08 Jun 2021 19:15:18 GMT</pubDate>
    <dc:creator>Tom</dc:creator>
    <dc:date>2021-06-08T19:15:18Z</dc:date>
    <item>
      <title>How do you insert a blank line or a blank page for each macro result to the output window in UNIX?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-do-you-insert-a-blank-line-or-a-blank-page-for-each-macro/m-p/746557#M29434</link>
      <description>&lt;P&gt;I have the following code:&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data sample1;
  input a;
datalines;
1
2
3
run;

data sample2;
  input b;
datalines;
1
2
3
run;

data sample3;
  input c;
datalines;
1
2
3
run;


%macro print_sample(input_data);
  proc print data=&amp;amp;input_data;
  run;
%mend print_sample;

%print_sample(sample1);
%print_sample(sample2);
%print_sample(sample3);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;As you can see, I just printed the 3 sample data. However, the result showing in UNIX is as follows:&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;                                                            The SAS System                            15:01 Tuesday, June 8, 2021   1

                                                              Obs    a

                                                               1     1
                                                               2     2
                                                               3     3
^L                                                           The SAS System                            15:01 Tuesday, June 8, 2021   2

                                                              Obs    b

                                                               1     1
                                                               2     2
                                                               3     3
^L                                                           The SAS System                            15:01 Tuesday, June 8, 2021   3

                                                              Obs    c

                                                               1     1
                                                               2     2
                                                               3     3&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;"The SAS System" for 2nd and 3rd result is right below the result of the first macro's result. Is there a way to insert a blank line in between the results or add a blank page?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I asked this before but didn't get a solution because I didn't provide any code and my question wasn't very clear. Please let me know if this is clear for what the objective is. Thank you for your help!&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jun 2021 19:08:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-do-you-insert-a-blank-line-or-a-blank-page-for-each-macro/m-p/746557#M29434</guid>
      <dc:creator>cosmid</dc:creator>
      <dc:date>2021-06-08T19:08:25Z</dc:date>
    </item>
    <item>
      <title>Re: How do you insert a blank line or a blank page for each macro result to the output window in UNI</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-do-you-insert-a-blank-line-or-a-blank-page-for-each-macro/m-p/746558#M29435</link>
      <description>Also, how do you remove the ^L in the output? What's creating it?</description>
      <pubDate>Tue, 08 Jun 2021 19:09:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-do-you-insert-a-blank-line-or-a-blank-page-for-each-macro/m-p/746558#M29435</guid>
      <dc:creator>cosmid</dc:creator>
      <dc:date>2021-06-08T19:09:26Z</dc:date>
    </item>
    <item>
      <title>Re: How do you insert a blank line or a blank page for each macro result to the output window in UNI</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-do-you-insert-a-blank-line-or-a-blank-page-for-each-macro/m-p/746559#M29436</link>
      <description>&lt;P&gt;This has nothing to do with the macro processor.&lt;/P&gt;
&lt;P&gt;There are already "blank lines" between the outputs. In fact each proc's output is starting on its own page.&amp;nbsp; That is what the FORMFEED ('0C'x) character means.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jun 2021 19:15:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-do-you-insert-a-blank-line-or-a-blank-page-for-each-macro/m-p/746559#M29436</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2021-06-08T19:15:18Z</dc:date>
    </item>
    <item>
      <title>Re: How do you insert a blank line or a blank page for each macro result to the output window in UNI</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-do-you-insert-a-blank-line-or-a-blank-page-for-each-macro/m-p/746578#M29437</link>
      <description>&lt;P&gt;Who still uses listing output? Usually PDF, Word, Excel or HTML are standard these days. &lt;BR /&gt;&lt;BR /&gt;Try adding blank title or footnote statements to add extra space, it's probably the quickest fix. &lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;title ' ';
footnote ' ';&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Example:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/New-SAS-User/Add-spaces-in-listing-file/td-p/592853" target="_blank"&gt;https://communities.sas.com/t5/New-SAS-User/Add-spaces-in-listing-file/td-p/592853&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jun 2021 20:25:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-do-you-insert-a-blank-line-or-a-blank-page-for-each-macro/m-p/746578#M29437</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-06-08T20:25:14Z</dc:date>
    </item>
    <item>
      <title>Re: How do you insert a blank line or a blank page for each macro result to the output window in UNI</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-do-you-insert-a-blank-line-or-a-blank-page-for-each-macro/m-p/746580#M29438</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;This has nothing to do with the macro processor.&lt;/P&gt;
&lt;P&gt;There are already "blank lines" between the outputs. In fact each proc's output is starting on its own page.&amp;nbsp; That is what the FORMFEED ('0C'x) character means.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Ah! The joys of trying to remember things like FORTRAN Carriage Control (or not) characters.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Makes me a tad nostalgic for the "not quite so good old days". &lt;span class="lia-unicode-emoji" title=":rolling_on_the_floor_laughing:"&gt;🤣&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jun 2021 20:42:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-do-you-insert-a-blank-line-or-a-blank-page-for-each-macro/m-p/746580#M29438</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-06-08T20:42:06Z</dc:date>
    </item>
    <item>
      <title>Re: How do you insert a blank line or a blank page for each macro result to the output window in UNI</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-do-you-insert-a-blank-line-or-a-blank-page-for-each-macro/m-p/746856#M29448</link>
      <description>Hi Reeza, that's actually what I am doing right now to fix the issue. I thought there's a better way of doing it. My code runs on UNIX:( And I just wanted to see if there's a way to separate out each result. Thanks for the help:)</description>
      <pubDate>Wed, 09 Jun 2021 18:45:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-do-you-insert-a-blank-line-or-a-blank-page-for-each-macro/m-p/746856#M29448</guid>
      <dc:creator>cosmid</dc:creator>
      <dc:date>2021-06-09T18:45:23Z</dc:date>
    </item>
    <item>
      <title>Re: How do you insert a blank line or a blank page for each macro result to the output window in UNI</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-do-you-insert-a-blank-line-or-a-blank-page-for-each-macro/m-p/746857#M29449</link>
      <description>In SAS studio's output, they do start on a new page. But in UNIX, the result are glued to each other. So that's why I was trying to see if there's a way to fix it.</description>
      <pubDate>Wed, 09 Jun 2021 18:46:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-do-you-insert-a-blank-line-or-a-blank-page-for-each-macro/m-p/746857#M29449</guid>
      <dc:creator>cosmid</dc:creator>
      <dc:date>2021-06-09T18:46:35Z</dc:date>
    </item>
  </channel>
</rss>

