<?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: Is it possible to export proc freq data to excel? in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Is-it-possible-to-export-proc-freq-data-to-excel/m-p/897833#M39934</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/391779"&gt;@Sandeep77&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;ods excel file="something.xlsx";&lt;BR /&gt;proc freq data = ...&lt;BR /&gt;... (what does these three dot mean?)&lt;BR /&gt;run;&lt;BR /&gt;ods excel close;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;These dots are a stand-in for the PROC FREQ code you already have (but did not post).&lt;/P&gt;</description>
    <pubDate>Mon, 09 Oct 2023 15:47:56 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2023-10-09T15:47:56Z</dc:date>
    <item>
      <title>Is it possible to export proc freq data to excel?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Is-it-possible-to-export-proc-freq-data-to-excel/m-p/897811#M39930</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;
&lt;P&gt;I have used proc freq data step to count the number of clients and I have the output result.&lt;/P&gt;
&lt;P&gt;I want to export the output result to excel. I have done normal export step to export the entire table but I don't know how to export&amp;nbsp; the proc freq table to excel. Can you please assist if that can be done? When I try to export the proc freq data information, which table name should I consider? If I select the table name it will pull the table where the proc freq data is coming from. Please see an example of below code to understand.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Proc export data=Accs_To_Track
outfile='\\JP.local\shares\public\Trace\Accsintrace.xlsx'
dbms=xlsx
replace;
sheet="Accs_To_Track";
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;This will pull the Accs_to_Track table instead of the proc freq data that I want.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Oct 2023 13:36:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Is-it-possible-to-export-proc-freq-data-to-excel/m-p/897811#M39930</guid>
      <dc:creator>Sandeep77</dc:creator>
      <dc:date>2023-10-09T13:36:18Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to export proc freq data to excel?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Is-it-possible-to-export-proc-freq-data-to-excel/m-p/897817#M39931</link>
      <description>&lt;P&gt;Take a look at ODS:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/odsug/p09n5pw9ol0897n1qe04zeur27rv.htm" target="_blank"&gt;https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/odsug/p09n5pw9ol0897n1qe04zeur27rv.htm&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Oct 2023 14:02:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Is-it-possible-to-export-proc-freq-data-to-excel/m-p/897817#M39931</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2023-10-09T14:02:43Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to export proc freq data to excel?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Is-it-possible-to-export-proc-freq-data-to-excel/m-p/897818#M39932</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods excel file="something.xlsx";
proc freq data = ...
    ...
run;
ods excel close;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 09 Oct 2023 14:06:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Is-it-possible-to-export-proc-freq-data-to-excel/m-p/897818#M39932</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2023-10-09T14:06:12Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to export proc freq data to excel?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Is-it-possible-to-export-proc-freq-data-to-excel/m-p/897827#M39933</link>
      <description>ods excel file="something.xlsx";&lt;BR /&gt;proc freq data = ...&lt;BR /&gt;    ... (what does these three dot mean?)&lt;BR /&gt;run;&lt;BR /&gt;ods excel close;</description>
      <pubDate>Mon, 09 Oct 2023 15:04:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Is-it-possible-to-export-proc-freq-data-to-excel/m-p/897827#M39933</guid>
      <dc:creator>Sandeep77</dc:creator>
      <dc:date>2023-10-09T15:04:59Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to export proc freq data to excel?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Is-it-possible-to-export-proc-freq-data-to-excel/m-p/897833#M39934</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/391779"&gt;@Sandeep77&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;ods excel file="something.xlsx";&lt;BR /&gt;proc freq data = ...&lt;BR /&gt;... (what does these three dot mean?)&lt;BR /&gt;run;&lt;BR /&gt;ods excel close;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;These dots are a stand-in for the PROC FREQ code you already have (but did not post).&lt;/P&gt;</description>
      <pubDate>Mon, 09 Oct 2023 15:47:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Is-it-possible-to-export-proc-freq-data-to-excel/m-p/897833#M39934</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2023-10-09T15:47:56Z</dc:date>
    </item>
  </channel>
</rss>

