<?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 export multiple table using PROC PRINT? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-export-multiple-table-using-PROC-PRINT/m-p/669805#M200979</link>
    <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/321952"&gt;@mrafael03&lt;/a&gt;&amp;nbsp;-&amp;nbsp; Please post your SAS log.&lt;/P&gt;</description>
    <pubDate>Thu, 16 Jul 2020 05:00:37 GMT</pubDate>
    <dc:creator>SASKiwi</dc:creator>
    <dc:date>2020-07-16T05:00:37Z</dc:date>
    <item>
      <title>How to export multiple table using PROC PRINT?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-export-multiple-table-using-PROC-PRINT/m-p/669756#M200948</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I need to know on how&amp;nbsp;I will separate the tables into&amp;nbsp;2 separate tabs. The codes below only resulted into 1 tab&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;/*1st TAB w/ 2 tables&amp;nbsp;*/&lt;/STRONG&gt;&lt;BR /&gt;ods excel options (sheet_interval="none" sheet_name='TAB1');&lt;BR /&gt;PROC PRINT DATA=TABLE1 NOOBS;&lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;PROC PRINT DATA=TABLE2 NOOBS;&lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;/*2nd TAB */&lt;/STRONG&gt;&lt;BR /&gt;ods excel options (sheet_name='TAB2');&lt;BR /&gt;PROC PRINT DATA=R.PRGNT_LIST NOOBS;&lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jul 2020 00:19:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-export-multiple-table-using-PROC-PRINT/m-p/669756#M200948</guid>
      <dc:creator>mrafael03</dc:creator>
      <dc:date>2020-07-16T00:19:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to export multiple table using PROC PRINT?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-export-multiple-table-using-PROC-PRINT/m-p/669759#M200951</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods excel file = "MyExcel.xlsx";
ods excel options (sheet_interval="none" sheet_name='TAB1');
PROC PRINT DATA=TABLE1 NOOBS;
RUN;

PROC PRINT DATA=TABLE2 NOOBS;
RUN;

/*2nd TAB */
ods excel options (sheet_interval="none" sheet_name='TAB2');
PROC PRINT DATA=R.PRGNT_LIST NOOBS;
RUN;
ods excel close;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 16 Jul 2020 00:41:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-export-multiple-table-using-PROC-PRINT/m-p/669759#M200951</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2020-07-16T00:41:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to export multiple table using PROC PRINT?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-export-multiple-table-using-PROC-PRINT/m-p/669760#M200952</link>
      <description>That doesn't work for me. I get everything on one sheet if I do that. If I set the 2nd sheet_interval option to 'now', the 2nd sheet is created as expected.</description>
      <pubDate>Thu, 16 Jul 2020 01:04:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-export-multiple-table-using-PROC-PRINT/m-p/669760#M200952</guid>
      <dc:creator>ketpt42</dc:creator>
      <dc:date>2020-07-16T01:04:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to export multiple table using PROC PRINT?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-export-multiple-table-using-PROC-PRINT/m-p/669762#M200953</link>
      <description>&lt;P&gt;Tell you want to start a new sheet.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods excel filename='C:\downloads\msheets.xlsx';
ods excel options (sheet_interval="none" sheet_name='TAB1');
PROC PRINT DATA=sashelp.class (obs=4) NOOBS;
RUN;
PROC PRINT DATA=sashelp.class (firstobs=5 obs=10) NOOBS;
RUN;
ods excel options (sheet_interval='now' sheet_name='TAB2');
PROC PRINT DATA=sashelp.class(firstobs=11 obs=16) NOOBS;
RUN;
ods excel options (sheet_interval='none' );
PROC PRINT DATA=sashelp.class(firstobs=17) NOOBS;
RUN;
ods excel close;

 &lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 16 Jul 2020 01:10:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-export-multiple-table-using-PROC-PRINT/m-p/669762#M200953</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2020-07-16T01:10:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to export multiple table using PROC PRINT?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-export-multiple-table-using-PROC-PRINT/m-p/669780#M200965</link>
      <description>what's the use of firstobs and obs?</description>
      <pubDate>Thu, 16 Jul 2020 02:05:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-export-multiple-table-using-PROC-PRINT/m-p/669780#M200965</guid>
      <dc:creator>mrafael03</dc:creator>
      <dc:date>2020-07-16T02:05:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to export multiple table using PROC PRINT?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-export-multiple-table-using-PROC-PRINT/m-p/669789#M200973</link>
      <description>&lt;P&gt;FIRSTOBS specifies the row to start reading from and OBS specifies the row to stop reading from.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jul 2020 02:59:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-export-multiple-table-using-PROC-PRINT/m-p/669789#M200973</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2020-07-16T02:59:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to export multiple table using PROC PRINT?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-export-multiple-table-using-PROC-PRINT/m-p/669791#M200975</link>
      <description>The code isn’t working. Got an error on sheet_interval</description>
      <pubDate>Thu, 16 Jul 2020 03:32:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-export-multiple-table-using-PROC-PRINT/m-p/669791#M200975</guid>
      <dc:creator>mrafael03</dc:creator>
      <dc:date>2020-07-16T03:32:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to export multiple table using PROC PRINT?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-export-multiple-table-using-PROC-PRINT/m-p/669799#M200977</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/321952"&gt;@mrafael03&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;what's the use of firstobs and obs?&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;So each PROC PRINT is printing different observations from SASHELP.CLASS to make it easier to check that the Excel file has the expected information.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;They are called &lt;A href="https://documentation.sas.com/?docsetId=ledsoptsref&amp;amp;docsetTarget=p0l3b7h13rpck6n17in4etoaoedm.htm&amp;amp;docsetVersion=3.1&amp;amp;locale=en" target="_self"&gt;dataset options&lt;/A&gt;. Well the documentation calls them "data set" options but that is just because SAS documentation writers don't know how to spell dataset.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jul 2020 04:08:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-export-multiple-table-using-PROC-PRINT/m-p/669799#M200977</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2020-07-16T04:08:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to export multiple table using PROC PRINT?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-export-multiple-table-using-PROC-PRINT/m-p/669805#M200979</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/321952"&gt;@mrafael03&lt;/a&gt;&amp;nbsp;-&amp;nbsp; Please post your SAS log.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jul 2020 05:00:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-export-multiple-table-using-PROC-PRINT/m-p/669805#M200979</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2020-07-16T05:00:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to export multiple table using PROC PRINT?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-export-multiple-table-using-PROC-PRINT/m-p/669806#M200980</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/321952"&gt;@mrafael03&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;The code isn’t working. Got an error on sheet_interval&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Interesting, code works as expected using SAS 9.4m5. So, when you post the log as text, using the "insert code" button, please add information about the SAS version you are using.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jul 2020 05:20:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-export-multiple-table-using-PROC-PRINT/m-p/669806#M200980</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2020-07-16T05:20:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to export multiple table using PROC PRINT?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-export-multiple-table-using-PROC-PRINT/m-p/669826#M200989</link>
      <description>&lt;P&gt;The ODS option should be&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;file=&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;not&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;filename=&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 16 Jul 2020 08:00:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-export-multiple-table-using-PROC-PRINT/m-p/669826#M200989</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-07-16T08:00:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to export multiple table using PROC PRINT?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-export-multiple-table-using-PROC-PRINT/m-p/670038#M201083</link>
      <description>&lt;P&gt;I got an error from when I added sheets 3 and 4 codes&lt;/P&gt;&lt;P&gt;ERROR: Argument now for word option sheet_interval not recognized. Expecting one of these keywords output, table, page, bygroup,&lt;/P&gt;&lt;P&gt;bygroups, proc, none or none.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SHEET 1&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="1" color="#0000ff"&gt;ods&lt;/FONT&gt; &lt;FONT face="Courier New" size="1" color="#0000ff"&gt;excel&lt;/FONT&gt; &lt;FONT face="Courier New" size="1" color="#0000ff"&gt;file&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;=&lt;/FONT&gt;&lt;FONT face="Courier New" size="1" color="#800080"&gt;""&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="1" color="#0000ff"&gt;options&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt; (&lt;/FONT&gt;&lt;FONT face="Courier New" size="1" color="#0000ff"&gt;sheet_interval&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;=&lt;/FONT&gt;&lt;FONT face="Courier New" size="1" color="#800080"&gt;"none"&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="1" color="#0000ff"&gt;sheet_name&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;=&lt;/FONT&gt;&lt;FONT face="Courier New" size="1" color="#800080"&gt;"TAB1"&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;);&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="1" color="#000080"&gt;&lt;STRONG&gt;PROC&lt;/STRONG&gt;&lt;/FONT&gt; &lt;STRONG&gt;&lt;FONT face="Courier New" size="1" color="#000080"&gt;PRINT&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT face="Courier New" size="1" color="#0000ff"&gt;DATA&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;=R.TBL1 &lt;/FONT&gt;&lt;FONT face="Courier New" size="1" color="#0000ff"&gt;NOOBS&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="1" color="#000080"&gt;&lt;STRONG&gt;RUN&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="1" color="#000080"&gt;&lt;STRONG&gt;PROC&lt;/STRONG&gt;&lt;/FONT&gt; &lt;STRONG&gt;&lt;FONT face="Courier New" size="1" color="#000080"&gt;PRINT&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT face="Courier New" size="1" color="#0000ff"&gt;DATA&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;=R.TBL2 &lt;/FONT&gt;&lt;FONT face="Courier New" size="1" color="#0000ff"&gt;NOOBS&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="1" color="#000080"&gt;&lt;STRONG&gt;RUN&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="1" color="#000080"&gt;&lt;STRONG&gt;PROC&lt;/STRONG&gt;&lt;/FONT&gt; &lt;STRONG&gt;&lt;FONT face="Courier New" size="1" color="#000080"&gt;PRINT&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT face="Courier New" size="1" color="#0000ff"&gt;DATA&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;=R.TBL3&amp;nbsp; &lt;/FONT&gt;&lt;FONT face="Courier New" size="1" color="#0000ff"&gt;NOOBS&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="1" color="#000080"&gt;&lt;STRONG&gt;RUN&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;----------------&lt;/P&gt;&lt;P&gt;SHEET 2&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="1" color="#0000ff"&gt;ods&lt;/FONT&gt; &lt;FONT face="Courier New" size="1" color="#0000ff"&gt;excel&lt;/FONT&gt; &lt;FONT face="Courier New" size="1" color="#0000ff"&gt;options&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;(&lt;/FONT&gt;&lt;FONT face="Courier New" size="1" color="#0000ff"&gt;sheet_interval&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;=&lt;/FONT&gt;&lt;FONT face="Courier New" size="1" color="#800080"&gt;'now'&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="1" color="#0000ff"&gt;sheet_name&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;=&lt;/FONT&gt;&lt;FONT face="Courier New" size="1" color="#800080"&gt;"TAB2"&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;);&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="1" color="#000080"&gt;&lt;STRONG&gt;PROC&lt;/STRONG&gt;&lt;/FONT&gt; &lt;STRONG&gt;&lt;FONT face="Courier New" size="1" color="#000080"&gt;PRINT&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT face="Courier New" size="1" color="#0000ff"&gt;DATA&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;=R.TBL4 &lt;/FONT&gt;&lt;FONT face="Courier New" size="1" color="#0000ff"&gt;NOOBS&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="1" color="#000080"&gt;&lt;STRONG&gt;RUN&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;----------------&lt;/P&gt;&lt;P&gt;SHEET 3&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="1" color="#0000ff"&gt;ods&lt;/FONT&gt; &lt;FONT face="Courier New" size="1" color="#0000ff"&gt;excel&lt;/FONT&gt; &lt;FONT face="Courier New" size="1" color="#0000ff"&gt;options&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;(&lt;/FONT&gt;&lt;FONT face="Courier New" size="1" color="#0000ff"&gt;sheet_interval&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;=&lt;/FONT&gt;&lt;FONT face="Courier New" size="1" color="#800080"&gt;"none"&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="1" color="#0000ff"&gt;sheet_name&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;=&lt;/FONT&gt;&lt;FONT face="Courier New" size="1" color="#800080"&gt;"TAB3"&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;);&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="1" color="#000080"&gt;&lt;STRONG&gt;PROC&lt;/STRONG&gt;&lt;/FONT&gt; &lt;STRONG&gt;&lt;FONT face="Courier New" size="1" color="#000080"&gt;PRINT&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT face="Courier New" size="1" color="#0000ff"&gt;DATA&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;=R.TBL5 &lt;/FONT&gt;&lt;FONT face="Courier New" size="1" color="#0000ff"&gt;NOOBS&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="1" color="#000080"&gt;&lt;STRONG&gt;RUN&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;----------------&lt;/P&gt;&lt;P&gt;SHEET 4&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="1" color="#0000ff"&gt;ods&lt;/FONT&gt; &lt;FONT face="Courier New" size="1" color="#0000ff"&gt;excel&lt;/FONT&gt; &lt;FONT face="Courier New" size="1" color="#0000ff"&gt;options&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;(&lt;/FONT&gt;&lt;FONT face="Courier New" size="1" color="#0000ff"&gt;sheet_interval&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;='&lt;/FONT&gt;&lt;FONT face="Courier New" size="1" color="#800080"&gt;now'&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="1" color="#0000ff"&gt;sheet_name&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;=&lt;/FONT&gt;&lt;FONT face="Courier New" size="1" color="#800080"&gt;"TAB3"&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;);&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="1" color="#000080"&gt;&lt;STRONG&gt;PROC&lt;/STRONG&gt;&lt;/FONT&gt; &lt;STRONG&gt;&lt;FONT face="Courier New" size="1" color="#000080"&gt;PRINT&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT face="Courier New" size="1" color="#0000ff"&gt;DATA&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;=R.TBL5 &lt;/FONT&gt;&lt;FONT face="Courier New" size="1" color="#0000ff"&gt;NOOBS&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="1" color="#000080"&gt;&lt;STRONG&gt;RUN&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="1"&gt;;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Jul 2020 01:15:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-export-multiple-table-using-PROC-PRINT/m-p/670038#M201083</guid>
      <dc:creator>mrafael03</dc:creator>
      <dc:date>2020-07-17T01:15:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to export multiple table using PROC PRINT?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-export-multiple-table-using-PROC-PRINT/m-p/670039#M201084</link>
      <description>I'm using SAS 9.4m4</description>
      <pubDate>Fri, 17 Jul 2020 01:19:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-export-multiple-table-using-PROC-PRINT/m-p/670039#M201084</guid>
      <dc:creator>mrafael03</dc:creator>
      <dc:date>2020-07-17T01:19:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to export multiple table using PROC PRINT?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-export-multiple-table-using-PROC-PRINT/m-p/670052#M201090</link>
      <description>&lt;P&gt;The value "now" for sheet_interval has&amp;nbsp; been added with 9.4m5 - try changing "now" to "proc", if that doesn't help, you should consider upgrading the sas version to a more recent release.&lt;/P&gt;</description>
      <pubDate>Fri, 17 Jul 2020 04:41:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-export-multiple-table-using-PROC-PRINT/m-p/670052#M201090</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2020-07-17T04:41:50Z</dc:date>
    </item>
  </channel>
</rss>

