<?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 ODS EXCEL in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/ODS-EXCEL/m-p/955868#M373289</link>
    <description>&lt;P&gt;Hello, I need some help. I have 8 tables/datasets in SAS that I want to export to Excel using ODS Excel. They all need to go in one excel file with three tabs. Out of these 8 tables, 4 need to go in the 1st tab, two in the 2nd tab and last two need to go in the 3rd tab. I know how to have either all tables in one tab (using sheet_interval='NONE') or have all the tables in a separate tab (using sheet_interval='YES')&amp;nbsp; but I do not know how to accomplish what I need to do.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I appreciate your help.&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
    <pubDate>Mon, 13 Jan 2025 05:14:45 GMT</pubDate>
    <dc:creator>SASMom2</dc:creator>
    <dc:date>2025-01-13T05:14:45Z</dc:date>
    <item>
      <title>ODS EXCEL</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ODS-EXCEL/m-p/955868#M373289</link>
      <description>&lt;P&gt;Hello, I need some help. I have 8 tables/datasets in SAS that I want to export to Excel using ODS Excel. They all need to go in one excel file with three tabs. Out of these 8 tables, 4 need to go in the 1st tab, two in the 2nd tab and last two need to go in the 3rd tab. I know how to have either all tables in one tab (using sheet_interval='NONE') or have all the tables in a separate tab (using sheet_interval='YES')&amp;nbsp; but I do not know how to accomplish what I need to do.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I appreciate your help.&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Mon, 13 Jan 2025 05:14:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ODS-EXCEL/m-p/955868#M373289</guid>
      <dc:creator>SASMom2</dc:creator>
      <dc:date>2025-01-13T05:14:45Z</dc:date>
    </item>
    <item>
      <title>Re: ODS EXCEL</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ODS-EXCEL/m-p/955870#M373291</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods excel file='c:\temp\temp.xlsx' options(sheet_name='First Tab' sheet_interval='none');
/*First table*/
proc print data=sashelp.class;run;
/*Second table*/
proc print data=sashelp.class;run;

ods excel options(sheet_name='Second Tab' sheet_interval='proc');
/*Third table*/
proc print data=sashelp.class(obs=4);run;
ods excel options(sheet_interval='none');
/*Fourth table*/
proc print data=sashelp.class(obs=4);run;

ods excel options(sheet_name='Third Tab' sheet_interval='proc');
/*Fifth table*/
proc print data=sashelp.class(obs=8);run;
ods excel options(sheet_interval='none');
/*Sixth table*/
proc print data=sashelp.class(obs=8);run;

ods excel close;

&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 13 Jan 2025 06:13:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ODS-EXCEL/m-p/955870#M373291</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2025-01-13T06:13:27Z</dc:date>
    </item>
    <item>
      <title>Re: ODS EXCEL</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ODS-EXCEL/m-p/955992#M373318</link>
      <description>&lt;P&gt;Thank you for your help! It worked beautifully!&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jan 2025 02:51:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ODS-EXCEL/m-p/955992#M373318</guid>
      <dc:creator>SASMom2</dc:creator>
      <dc:date>2025-01-14T02:51:36Z</dc:date>
    </item>
  </channel>
</rss>

