<?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: Extracting the data from SAS format in SAS Software for Learning Community</title>
    <link>https://communities.sas.com/t5/SAS-Software-for-Learning/Extracting-the-data-from-SAS-format/m-p/857542#M957</link>
    <description>&lt;P&gt;I would like to get the details of the codes&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 07 Feb 2023 13:31:15 GMT</pubDate>
    <dc:creator>drvasu</dc:creator>
    <dc:date>2023-02-07T13:31:15Z</dc:date>
    <item>
      <title>Extracting the data from SAS format</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/Extracting-the-data-from-SAS-format/m-p/857497#M954</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you please help me to extract the data in this .SAS file into Excel?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Feb 2023 07:21:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/Extracting-the-data-from-SAS-format/m-p/857497#M954</guid>
      <dc:creator>drvasu</dc:creator>
      <dc:date>2023-02-07T07:21:31Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting the data from SAS format</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/Extracting-the-data-from-SAS-format/m-p/857541#M956</link>
      <description>&lt;P&gt;This file is a SAS program, not a SAS data set. It contains only SAS code (text). Can you provide details about what you intend to accomplish?&lt;/P&gt;</description>
      <pubDate>Tue, 07 Feb 2023 13:29:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/Extracting-the-data-from-SAS-format/m-p/857541#M956</guid>
      <dc:creator>SASJedi</dc:creator>
      <dc:date>2023-02-07T13:29:44Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting the data from SAS format</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/Extracting-the-data-from-SAS-format/m-p/857542#M957</link>
      <description>&lt;P&gt;I would like to get the details of the codes&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Feb 2023 13:31:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/Extracting-the-data-from-SAS-format/m-p/857542#M957</guid>
      <dc:creator>drvasu</dc:creator>
      <dc:date>2023-02-07T13:31:15Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting the data from SAS format</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/Extracting-the-data-from-SAS-format/m-p/857543#M958</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/439251"&gt;@drvasu&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I would like to get the details of the codes&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Ask specific questions about the code. Explain (as&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13728"&gt;@SASJedi&lt;/a&gt;&amp;nbsp;said) what it means to extract this into Excel.&lt;/P&gt;</description>
      <pubDate>Tue, 07 Feb 2023 13:44:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/Extracting-the-data-from-SAS-format/m-p/857543#M958</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2023-02-07T13:44:48Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting the data from SAS format</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/Extracting-the-data-from-SAS-format/m-p/857545#M959</link>
      <description>&lt;P&gt;If you want to read a text file, like the one you posted, use a DATA step.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data code ;
  infile 'clean data.sas' truncover ;
  row+1;
  input code $char200.;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If you want to write data into Excel you can use PROC EXPORT, or the XLSX libname engine or the ODS EXCEL engine.&lt;/P&gt;</description>
      <pubDate>Tue, 07 Feb 2023 13:50:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/Extracting-the-data-from-SAS-format/m-p/857545#M959</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2023-02-07T13:50:20Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting the data from SAS format</title>
      <link>https://communities.sas.com/t5/SAS-Software-for-Learning/Extracting-the-data-from-SAS-format/m-p/857615#M960</link>
      <description>&lt;P&gt;Why do you want to make SAS code unusable by storing it in a spreadsheet file?&lt;/P&gt;</description>
      <pubDate>Tue, 07 Feb 2023 17:42:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Software-for-Learning/Extracting-the-data-from-SAS-format/m-p/857615#M960</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2023-02-07T17:42:22Z</dc:date>
    </item>
  </channel>
</rss>

