<?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: Proc Tabulate ODS excel sheet_interval='none' not working in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Proc-Tabulate-ODS-excel-sheet-interval-none-not-working/m-p/752457#M237035</link>
    <description>&lt;P&gt;Oh man, I feel like a fool.&amp;nbsp; I did copy it from somewhere on the web and forgot that it copies the markup with it.&amp;nbsp; I retyped it and that fixed it -- thank you very much!!&lt;/P&gt;</description>
    <pubDate>Tue, 06 Jul 2021 22:34:58 GMT</pubDate>
    <dc:creator>jhealthpolicy</dc:creator>
    <dc:date>2021-07-06T22:34:58Z</dc:date>
    <item>
      <title>Proc Tabulate ODS excel sheet_interval='none' not working</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Tabulate-ODS-excel-sheet-interval-none-not-working/m-p/752375#M236987</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am trying to use ods excel with the sheet_interval='none' option to get all of my output to come out on one tab but it does not work.&amp;nbsp; It continues to output all page variables as separate tabs. My quick fix for this would be to change the output to ods html printed to a .xls file, but all of the documentation i've read says this should work with ods excel.&amp;nbsp; Any ideas?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods excel file = 'D:\Projects\Tabulate 7-6-2021.xlsx' OPTIONS(sheet_interval='​NONE');&lt;BR /&gt;proc tabulate missing data = Extended_data;&lt;BR /&gt;class cy&amp;nbsp;exclusion exclude_reason Group1 Group2;&lt;BR /&gt;var paid_amount detail_count ;&lt;BR /&gt;table all Group1*Group2, all exclusion*exclude_reason, cy*(n*f=comma12.0 detail_count*f=comma12.2 paid_amount*f=comma12.2 ) /nocellmerge;&lt;BR /&gt;run;&lt;BR /&gt;ods excel close;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Jul 2021 18:12:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Tabulate-ODS-excel-sheet-interval-none-not-working/m-p/752375#M236987</guid>
      <dc:creator>jhealthpolicy</dc:creator>
      <dc:date>2021-07-06T18:12:06Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Tabulate ODS excel sheet_interval='none' not working</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Tabulate-ODS-excel-sheet-interval-none-not-working/m-p/752410#M237005</link>
      <description>What version of SAS are you using?&lt;BR /&gt;9.4M6?&lt;BR /&gt;&lt;BR /&gt;Some of the older versions 9.4M3- are buggy as ODS Excel wasn't fully implemented yet.</description>
      <pubDate>Tue, 06 Jul 2021 20:34:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Tabulate-ODS-excel-sheet-interval-none-not-working/m-p/752410#M237005</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-07-06T20:34:19Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Tabulate ODS excel sheet_interval='none' not working</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Tabulate-ODS-excel-sheet-interval-none-not-working/m-p/752411#M237006</link>
      <description>&lt;P&gt;SAS 9.4 TS Level 1M7&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I also have another system that is running SAS 9.4 TS Level 1M3 -- it does not work on that either.&lt;/P&gt;</description>
      <pubDate>Tue, 06 Jul 2021 20:40:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Tabulate-ODS-excel-sheet-interval-none-not-working/m-p/752411#M237006</guid>
      <dc:creator>jhealthpolicy</dc:creator>
      <dc:date>2021-07-06T20:40:23Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Tabulate ODS excel sheet_interval='none' not working</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Tabulate-ODS-excel-sheet-interval-none-not-working/m-p/752419#M237011</link>
      <description>When I copy and paste your code to run I get this error:&lt;BR /&gt; WARNING: Argument ​none for word option sheet_interval not recognized. Expecting one of these keywords output, table, page, &lt;BR /&gt;          bygroup, bygroups, proc, none, now or none.&lt;BR /&gt;&lt;BR /&gt;However if I type in the word NONE or none manually it's fine.  Did you copy and paste that code from somewhere? Are you working on a browser that has a different character set or language enabled?&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 06 Jul 2021 20:49:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Tabulate-ODS-excel-sheet-interval-none-not-working/m-p/752419#M237011</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-07-06T20:49:59Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Tabulate ODS excel sheet_interval='none' not working</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Tabulate-ODS-excel-sheet-interval-none-not-working/m-p/752422#M237014</link>
      <description>I read in your NONE value as a hex code and it is messed up somehow. Not sure what's going on there but I think just retyping the code should solve your issues.</description>
      <pubDate>Tue, 06 Jul 2021 20:56:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Tabulate-ODS-excel-sheet-interval-none-not-working/m-p/752422#M237014</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-07-06T20:56:09Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Tabulate ODS excel sheet_interval='none' not working</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Tabulate-ODS-excel-sheet-interval-none-not-working/m-p/752457#M237035</link>
      <description>&lt;P&gt;Oh man, I feel like a fool.&amp;nbsp; I did copy it from somewhere on the web and forgot that it copies the markup with it.&amp;nbsp; I retyped it and that fixed it -- thank you very much!!&lt;/P&gt;</description>
      <pubDate>Tue, 06 Jul 2021 22:34:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Tabulate-ODS-excel-sheet-interval-none-not-working/m-p/752457#M237035</guid>
      <dc:creator>jhealthpolicy</dc:creator>
      <dc:date>2021-07-06T22:34:58Z</dc:date>
    </item>
  </channel>
</rss>

