<?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 to create panel of tables in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/ODS-to-create-panel-of-tables/m-p/511329#M137587</link>
    <description>&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;I am using SAS enterprise guide 5.1&lt;/P&gt;
&lt;P&gt;I want to create a panel of 5 tables (3 side by side tables &amp;nbsp;and 2 side by side tables)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;In the output I don't see side by side tables&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;  ods tagsets.msoffice2k file="path\panels.xls"&lt;BR /&gt; options(panelcols="3") style=normal;&lt;BR /&gt; proc print data=sashelp.prdsale(obs=10);&lt;BR /&gt; var actual predict country region;&lt;BR /&gt; where country="CANADA";&lt;BR /&gt; title "Canada Sales";&lt;BR /&gt; run;&lt;BR /&gt; proc print data=sashelp.prdsale(obs=10);&lt;BR /&gt; var actual predict country region;&lt;BR /&gt; where country="U.S.A.";&lt;BR /&gt; title "USA Sales";&lt;BR /&gt; run;&lt;BR /&gt; proc print data=sashelp.prdsale(obs=10);&lt;BR /&gt; var actual predict country region;&lt;BR /&gt; where country="GERMANY";&lt;BR /&gt; title "Germany Sales";&lt;BR /&gt; run;&lt;BR /&gt; ods tagsets.msoffice2k options(panelcols="2") ;&lt;BR /&gt; proc print data=sashelp.prdsale(obs=20);&lt;BR /&gt; where region="EAST";&lt;BR /&gt; title "East Sales";&lt;BR /&gt; run;&lt;BR /&gt; proc print data=sashelp.prdsale(obs=20);&lt;BR /&gt; where region="WEST";&lt;BR /&gt; title "West Sales";&lt;BR /&gt; run;&lt;BR /&gt; ods tagsets.msoffice2k close;&lt;BR /&gt;&lt;BR /&gt;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 08 Nov 2018 09:51:08 GMT</pubDate>
    <dc:creator>Ronein</dc:creator>
    <dc:date>2018-11-08T09:51:08Z</dc:date>
    <item>
      <title>ODS to create panel of tables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ODS-to-create-panel-of-tables/m-p/511329#M137587</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;I am using SAS enterprise guide 5.1&lt;/P&gt;
&lt;P&gt;I want to create a panel of 5 tables (3 side by side tables &amp;nbsp;and 2 side by side tables)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;In the output I don't see side by side tables&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;  ods tagsets.msoffice2k file="path\panels.xls"&lt;BR /&gt; options(panelcols="3") style=normal;&lt;BR /&gt; proc print data=sashelp.prdsale(obs=10);&lt;BR /&gt; var actual predict country region;&lt;BR /&gt; where country="CANADA";&lt;BR /&gt; title "Canada Sales";&lt;BR /&gt; run;&lt;BR /&gt; proc print data=sashelp.prdsale(obs=10);&lt;BR /&gt; var actual predict country region;&lt;BR /&gt; where country="U.S.A.";&lt;BR /&gt; title "USA Sales";&lt;BR /&gt; run;&lt;BR /&gt; proc print data=sashelp.prdsale(obs=10);&lt;BR /&gt; var actual predict country region;&lt;BR /&gt; where country="GERMANY";&lt;BR /&gt; title "Germany Sales";&lt;BR /&gt; run;&lt;BR /&gt; ods tagsets.msoffice2k options(panelcols="2") ;&lt;BR /&gt; proc print data=sashelp.prdsale(obs=20);&lt;BR /&gt; where region="EAST";&lt;BR /&gt; title "East Sales";&lt;BR /&gt; run;&lt;BR /&gt; proc print data=sashelp.prdsale(obs=20);&lt;BR /&gt; where region="WEST";&lt;BR /&gt; title "West Sales";&lt;BR /&gt; run;&lt;BR /&gt; ods tagsets.msoffice2k close;&lt;BR /&gt;&lt;BR /&gt;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Nov 2018 09:51:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ODS-to-create-panel-of-tables/m-p/511329#M137587</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2018-11-08T09:51:08Z</dc:date>
    </item>
    <item>
      <title>Re: ODS to create panel of tables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ODS-to-create-panel-of-tables/m-p/511557#M137685</link>
      <description>&lt;P&gt;1. Please format your code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2. This example comes from page &lt;A href="https://support.sas.com/rnd/base/ods/odsmarkup/msoffice2k/index.html" target="_blank"&gt;https://support.sas.com/rnd/base/ods/odsmarkup/msoffice2k/index.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;3. This page states:&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;This section provides example code created with the sample Tagsets.MSOffice2K_x which modifies the MSOffice2K destination to add options to this new tagset.&amp;nbsp;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;The sample code does not work with &lt;EM&gt;Tagsets.MSOffice2K&lt;/EM&gt;&amp;nbsp;as the option is not supported. Create and use&amp;nbsp;&lt;EM&gt;Tagsets.MSOffice2K_x.&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Nov 2018 22:21:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ODS-to-create-panel-of-tables/m-p/511557#M137685</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2018-11-08T22:21:39Z</dc:date>
    </item>
    <item>
      <title>Re: ODS to create panel of tables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ODS-to-create-panel-of-tables/m-p/512108#M137892</link>
      <description>&lt;P&gt;I am using SAS enterprise guide 5.1&lt;/P&gt;
&lt;P&gt;When I run&amp;nbsp;&lt;SPAN&gt;TAGSETS.MSOFFICE2K_X I get a warning&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;"WARNING: Tagset TAGSETS.MSOFFICE2K_X not found; the default tagset will be used instead."&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt; 

  ods tagsets.msoffice2k_x file="/path/panels.xls"
 options(panelcols="3") style=normal; 
proc print data=sashelp.prdsale(obs=10);
var actual predict country region;
where country="CANADA"; 
title "Canada Sales"; 
run;
proc print data=sashelp.prdsale(obs=10);
var actual predict country region;
where country="U.S.A.";
title "USA Sales"; 
run;
proc print data=sashelp.prdsale(obs=10);
var actual predict country region;
where country="GERMANY";
title "Germany Sales";
run; 
ods tagsets.msoffice2k_x options(panelcols="2") ; 
proc print data=sashelp.prdsale(obs=20); 
where region="EAST";
title "East Sales";
run;
proc print data=sashelp.prdsale(obs=20); 
where region="WEST"; 
title "West Sales";
run; 
ods tagsets.msoffice2k_x close;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 12 Nov 2018 08:17:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ODS-to-create-panel-of-tables/m-p/512108#M137892</guid>
      <dc:creator>Ronein</dc:creator>
      <dc:date>2018-11-12T08:17:24Z</dc:date>
    </item>
    <item>
      <title>Re: ODS to create panel of tables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ODS-to-create-panel-of-tables/m-p/512131#M137899</link>
      <description>&lt;P&gt;Follow the link supplied by &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/16961"&gt;@ChrisNZ&lt;/a&gt;, read the section titled "Introduction".&lt;/P&gt;</description>
      <pubDate>Mon, 12 Nov 2018 09:47:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ODS-to-create-panel-of-tables/m-p/512131#M137899</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2018-11-12T09:47:06Z</dc:date>
    </item>
    <item>
      <title>Re: ODS to create panel of tables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ODS-to-create-panel-of-tables/m-p/512387#M137990</link>
      <description>&lt;P&gt;What's confusing about the page I pointed to, or about my sentence?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;Create&lt;/STRONG&gt; and use&amp;nbsp;Tagsets.MSOffice2K_x.&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Nov 2018 22:04:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ODS-to-create-panel-of-tables/m-p/512387#M137990</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2018-11-12T22:04:33Z</dc:date>
    </item>
  </channel>
</rss>

