<?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: PC Files clarification in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/PC-Files-clarification/m-p/965462#M375858</link>
    <description>&lt;P&gt;The main usage I have seen for this is when the files exist on a Windows system (or Windows only fileshare) and the files are not accessible from the machine where SAS is running.&amp;nbsp; &amp;nbsp;Typically when SAS is running on Unix.&amp;nbsp; &amp;nbsp;At lot of times you can avoid the need by just cross mounting the fileshare on both systems.&amp;nbsp; Users just might need to use a different directory name in the SAS code than they see on their PC.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also it is useful for handling proprietary file formats (like Microsoft Access files) that SAS cannot handle directly on non Windows environments.&lt;/P&gt;</description>
    <pubDate>Wed, 30 Apr 2025 20:27:39 GMT</pubDate>
    <dc:creator>Tom</dc:creator>
    <dc:date>2025-04-30T20:27:39Z</dc:date>
    <item>
      <title>PC Files clarification</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PC-Files-clarification/m-p/965449#M375851</link>
      <description>&lt;P&gt;I've been having this gray area about PC Files for several years now. If you read the definition of what it serves for:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;SAS PC Files Server and the associated SAS/ACCESS Interface to PC Files&amp;nbsp;enable SAS users to access and manipulate data stored in various PC file formats, such as Microsoft Excel and Access, directly within SAS.&amp;nbsp;This allows users to read data from these files, use it in SAS reports and applications, and create PC files from SAS datasets.&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;BR /&gt;Yet, on a SAS 9.4 platform WITHTOUT PC Files installed, I do the following:&lt;BR /&gt;1.- In SAS Studio, open any SAS dataset from a library&lt;BR /&gt;2.- Export the dataset as a Microsft XL file (xlsx)&lt;/P&gt;&lt;P&gt;3.- In a SAS program, run the following:&lt;/P&gt;&lt;DIV&gt;&lt;PRE&gt;Libname PC XLSX "&amp;lt;MyFolder&amp;gt;\postalcodes.xlsx";&lt;BR /&gt;&lt;BR /&gt;proc import&lt;BR /&gt;  datafile="&amp;lt;MyFolder&amp;gt;\postalcodes.xlsx"&lt;BR /&gt;  dbms=xlsx &lt;BR /&gt;  out=work.postalcodes&lt;BR /&gt;  replace;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;&lt;/DIV&gt;&lt;P&gt;My SAS products list shows 'SAS/Access interface to PC Files' and that's it.&lt;BR /&gt;&lt;BR /&gt;So why would I need PC Files???&lt;/P&gt;</description>
      <pubDate>Wed, 30 Apr 2025 18:27:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PC-Files-clarification/m-p/965449#M375851</guid>
      <dc:creator>RexDeus9</dc:creator>
      <dc:date>2025-04-30T18:27:24Z</dc:date>
    </item>
    <item>
      <title>Re: PC Files clarification</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PC-Files-clarification/m-p/965458#M375854</link>
      <description>The PC Files Server is a tool which enables SAS on non-Windows platforms to access MS Office files where Windows-only modules are needed (anything before MS switched to the XML-in-ZIP-archive format).&lt;BR /&gt;The newer XLSX files do not need such modules and are openly documented, so SAS could write the necessary code themselves.</description>
      <pubDate>Wed, 30 Apr 2025 19:50:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PC-Files-clarification/m-p/965458#M375854</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2025-04-30T19:50:13Z</dc:date>
    </item>
    <item>
      <title>Re: PC Files clarification</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PC-Files-clarification/m-p/965461#M375857</link>
      <description>&lt;P&gt;BTW, your LIBNAME statement is redundant in your PROC IMPORT step as you don't refer to the LIBREF PC.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want to use the EXCEL LIBNAME engine (which makes use of MS Office software if on Windows), read&amp;nbsp; or write MS Access databases or use the SAS Add-In to MS Office then you most definitely need to have SAS/ACCESS Interface to PC Files installed and licensed.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Apr 2025 20:11:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PC-Files-clarification/m-p/965461#M375857</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2025-04-30T20:11:52Z</dc:date>
    </item>
    <item>
      <title>Re: PC Files clarification</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PC-Files-clarification/m-p/965462#M375858</link>
      <description>&lt;P&gt;The main usage I have seen for this is when the files exist on a Windows system (or Windows only fileshare) and the files are not accessible from the machine where SAS is running.&amp;nbsp; &amp;nbsp;Typically when SAS is running on Unix.&amp;nbsp; &amp;nbsp;At lot of times you can avoid the need by just cross mounting the fileshare on both systems.&amp;nbsp; Users just might need to use a different directory name in the SAS code than they see on their PC.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also it is useful for handling proprietary file formats (like Microsoft Access files) that SAS cannot handle directly on non Windows environments.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Apr 2025 20:27:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PC-Files-clarification/m-p/965462#M375858</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2025-04-30T20:27:39Z</dc:date>
    </item>
    <item>
      <title>Re: PC Files clarification</title>
      <link>https://communities.sas.com/t5/SAS-Programming/PC-Files-clarification/m-p/965818#M375975</link>
      <description>Still keeping an eye the community Kurt, I like your answer.</description>
      <pubDate>Mon, 05 May 2025 19:39:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/PC-Files-clarification/m-p/965818#M375975</guid>
      <dc:creator>RexDeus9</dc:creator>
      <dc:date>2025-05-05T19:39:29Z</dc:date>
    </item>
  </channel>
</rss>

