<?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: Multiple sheets with panel display in xls in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Multiple-sheets-with-panel-display-in-xls/m-p/573130#M22982</link>
    <description>&lt;P&gt;First question: Do you actually want an XLS (as in the years ago replaced file format) or XLSX, the current file format?&lt;/P&gt;
&lt;P&gt;The files are quite different.&lt;/P&gt;</description>
    <pubDate>Fri, 12 Jul 2019 15:05:45 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2019-07-12T15:05:45Z</dc:date>
    <item>
      <title>Multiple sheets with panel display in xls</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Multiple-sheets-with-panel-display-in-xls/m-p/573114#M22981</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I need to create a XLS worksheet report ,in which the tables displayed in panels and having multiple tabs in worksheet.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So I used msoffice2k_x tagset for having the side-by-side display of tables(but it created only one sheet per workbook) .&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then created separate worksheets and tried combining worksheet_source option.But it seems like it stores the hyperlink&amp;nbsp; and not the actual file.&amp;nbsp; &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you someone help me with storing the files permanently or an alternative approach ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank,&lt;/P&gt;
&lt;P&gt;Kayal&lt;/P&gt;</description>
      <pubDate>Fri, 12 Jul 2019 14:41:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Multiple-sheets-with-panel-display-in-xls/m-p/573114#M22981</guid>
      <dc:creator>Kayalvizhi</dc:creator>
      <dc:date>2019-07-12T14:41:34Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple sheets with panel display in xls</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Multiple-sheets-with-panel-display-in-xls/m-p/573130#M22982</link>
      <description>&lt;P&gt;First question: Do you actually want an XLS (as in the years ago replaced file format) or XLSX, the current file format?&lt;/P&gt;
&lt;P&gt;The files are quite different.&lt;/P&gt;</description>
      <pubDate>Fri, 12 Jul 2019 15:05:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Multiple-sheets-with-panel-display-in-xls/m-p/573130#M22982</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-07-12T15:05:45Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple sheets with panel display in xls</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Multiple-sheets-with-panel-display-in-xls/m-p/573138#M22983</link>
      <description>I'm not aware of a better way to get side by side tables in SAS right now unfortunately. If you know some R it's pretty basic to get data into Excel where you need it but it's not formatted either. How complicated is your report structure? Any option of building an Excel template and using SAS to populate it? That's usually my workaround.</description>
      <pubDate>Fri, 12 Jul 2019 15:22:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Multiple-sheets-with-panel-display-in-xls/m-p/573138#M22983</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-07-12T15:22:40Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple sheets with panel display in xls</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Multiple-sheets-with-panel-display-in-xls/m-p/573139#M22984</link>
      <description>&lt;P&gt;how about something like this&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods html close;
ods excel file = "C:\Myresults.xlsx"
    options (contents = 'on');
proc print data = work.a_counts noobs;
proc print data = work.b_counts noobs;
proc print data = work.ac_counts noobs;
proc print data = work.bc_counts noobs;
run;

ods _all_ close;
ods html;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 12 Jul 2019 15:23:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Multiple-sheets-with-panel-display-in-xls/m-p/573139#M22984</guid>
      <dc:creator>VDD</dc:creator>
      <dc:date>2019-07-12T15:23:27Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple sheets with panel display in xls</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Multiple-sheets-with-panel-display-in-xls/m-p/573143#M22985</link>
      <description>ODS HTML doesn't support multisheets, without a lot of work arounds at least. ODS EXCEL doesn't support side by side tables &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;</description>
      <pubDate>Fri, 12 Jul 2019 15:31:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Multiple-sheets-with-panel-display-in-xls/m-p/573143#M22985</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-07-12T15:31:11Z</dc:date>
    </item>
  </channel>
</rss>

