<?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 Exporting more than 1048576 into csv using base sas 9.4 proc export in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Exporting-more-than-1048576-into-csv-using-base-sas-9-4-proc/m-p/609020#M76702</link>
    <description>&lt;P&gt;hi i need help in&amp;nbsp;Exporting more than 1048576 into csv/xlsb/xlsx file using base sas 9.4 .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need to work on report using excel but my rows always limits to&amp;nbsp;&amp;nbsp;1048576&amp;nbsp; when i use below code to export&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc export&lt;BR /&gt;data = Final_Rollup&lt;BR /&gt;outfile = 'C:\Users\msbla\report.xlsb'&lt;BR /&gt;dbms = excel replace;&lt;BR /&gt;run;&lt;/P&gt;</description>
    <pubDate>Tue, 03 Dec 2019 11:46:58 GMT</pubDate>
    <dc:creator>Solly7</dc:creator>
    <dc:date>2019-12-03T11:46:58Z</dc:date>
    <item>
      <title>Exporting more than 1048576 into csv using base sas 9.4 proc export</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Exporting-more-than-1048576-into-csv-using-base-sas-9-4-proc/m-p/609020#M76702</link>
      <description>&lt;P&gt;hi i need help in&amp;nbsp;Exporting more than 1048576 into csv/xlsb/xlsx file using base sas 9.4 .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need to work on report using excel but my rows always limits to&amp;nbsp;&amp;nbsp;1048576&amp;nbsp; when i use below code to export&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc export&lt;BR /&gt;data = Final_Rollup&lt;BR /&gt;outfile = 'C:\Users\msbla\report.xlsb'&lt;BR /&gt;dbms = excel replace;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Dec 2019 11:46:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Exporting-more-than-1048576-into-csv-using-base-sas-9-4-proc/m-p/609020#M76702</guid>
      <dc:creator>Solly7</dc:creator>
      <dc:date>2019-12-03T11:46:58Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting more than 1048576 into csv using base sas 9.4 proc export</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Exporting-more-than-1048576-into-csv-using-base-sas-9-4-proc/m-p/609023#M76703</link>
      <description>&lt;P&gt;Use the proper dbms= value:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc export
  data = Final_Rollup
  outfile = 'C:\Users\msbla\report.csv'
  dbms = csv
  replace
;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;A csv file is only limited by available disk storage. Note that you can't import it into Excel, but who uses Excel for data containing a million rows anyway?&lt;/P&gt;</description>
      <pubDate>Tue, 03 Dec 2019 11:51:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Exporting-more-than-1048576-into-csv-using-base-sas-9-4-proc/m-p/609023#M76703</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-12-03T11:51:05Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting more than 1048576 into csv using base sas 9.4 proc export</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Exporting-more-than-1048576-into-csv-using-base-sas-9-4-proc/m-p/609055#M76706</link>
      <description>&lt;P&gt;As Kurt suggested, use CSV for this.&lt;/P&gt;
&lt;P&gt;From Microsoft:&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN&gt;Excel 2007 and above supports 2^20 rows, i.e.&amp;nbsp;1048576 rows. They are just numbered from 1 to&amp;nbsp;1048576.&lt;/SPAN&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://answers.microsoft.com/en-us/office/forum/office_2013_release-excel/why-does-an-excel-spreadsheet-end-at-1048576-and/0007c3c4-0785-45a4-ad63-78b930773a5e" target="_blank"&gt;https://answers.microsoft.com/en-us/office/forum/office_2013_release-excel/why-does-an-excel-spreadsheet-end-at-1048576-and/0007c3c4-0785-45a4-ad63-78b930773a5e&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;-unison&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Dec 2019 14:20:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Exporting-more-than-1048576-into-csv-using-base-sas-9-4-proc/m-p/609055#M76706</guid>
      <dc:creator>unison</dc:creator>
      <dc:date>2019-12-03T14:20:18Z</dc:date>
    </item>
  </channel>
</rss>

