<?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 export in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Proc-export/m-p/716483#M221442</link>
    <description>&lt;P&gt;Just how do you expect to actually use 3 million records in a program that only wants to support 1 million?????&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this is one of those "the boss says it needs to be in Excel" with a very specific reason I would then ask the boss "What do you want to do with the 2 million records that Excel won't support?"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've to fight that particular fight off and on since the time Excel only supported 64K records.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 03 Feb 2021 15:14:19 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2021-02-03T15:14:19Z</dc:date>
    <item>
      <title>Proc export</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-export/m-p/716427#M221420</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I do have more then 3 million record in my table. how i can export it in excel sheet. As we know excel is supporting only&amp;nbsp;1048576 number of rows. i will look forward for your response.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you in advance .&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;S.S&lt;/P&gt;</description>
      <pubDate>Wed, 03 Feb 2021 13:52:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-export/m-p/716427#M221420</guid>
      <dc:creator>singhsahab</dc:creator>
      <dc:date>2021-02-03T13:52:38Z</dc:date>
    </item>
    <item>
      <title>Re: Proc export</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-export/m-p/716437#M221423</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/153275"&gt;@singhsahab&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi All,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I do have more then 3 million record in my table. how i can export it in excel sheet. As we know excel is supporting only&amp;nbsp;1048576 number of rows. i will look forward for your response.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you in advance .&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;S.S&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Seems silly to force something into a format that cannot handle it.&amp;nbsp; You need to split the data.&amp;nbsp; If you use the XLSX engine then it is just like splitting into separate datasets (only the performance will be much worse).&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname out xlsx 'way_too_large.xlsx';
data out.one;
  set have (obs=1000000);
run;
data out.two;
  set have (firstobs=1000001 obs=2000000);
run;
data out.three
  set have (firstobs=2000001 obs=3000000);
run;
...
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 03 Feb 2021 13:59:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-export/m-p/716437#M221423</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2021-02-03T13:59:02Z</dc:date>
    </item>
    <item>
      <title>Re: Proc export</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-export/m-p/716483#M221442</link>
      <description>&lt;P&gt;Just how do you expect to actually use 3 million records in a program that only wants to support 1 million?????&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this is one of those "the boss says it needs to be in Excel" with a very specific reason I would then ask the boss "What do you want to do with the 2 million records that Excel won't support?"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've to fight that particular fight off and on since the time Excel only supported 64K records.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Feb 2021 15:14:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-export/m-p/716483#M221442</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-02-03T15:14:19Z</dc:date>
    </item>
  </channel>
</rss>

