<?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 creating a blank SAS_empty_ sheet in the exported .xlsx file in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Proc-Export-creating-a-blank-SAS-empty-sheet-in-the-exported/m-p/625449#M184344</link>
    <description>&lt;P&gt;Any thoughts or suggestion?&lt;/P&gt;</description>
    <pubDate>Mon, 17 Feb 2020 21:31:20 GMT</pubDate>
    <dc:creator>ElvisK</dc:creator>
    <dc:date>2020-02-17T21:31:20Z</dc:date>
    <item>
      <title>Proc Export creating a blank SAS_empty_ sheet in the exported .xlsx file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Export-creating-a-blank-SAS-empty-sheet-in-the-exported/m-p/483623#M125432</link>
      <description>&lt;P&gt;When exporting to .xlsx I used the following code&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt;&lt;/FONT&gt; &lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;export&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;data&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=MARKET &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;outfile&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; = &lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;"&amp;amp;path.\Market Report.xlsx"&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;dbms&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=EXCELCS &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;replace&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;sheet= &lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;"MARKET"&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;run&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;The export ran successfully. In the excel that SAS created, there are two sheets, SAS_empty_ and Market. &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;I want the Market sheet, but the SAS_empty_ sheet is annoying and I don't want that. what can I do to stop SAS from creating this blank sheet.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Aug 2018 23:35:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Export-creating-a-blank-SAS-empty-sheet-in-the-exported/m-p/483623#M125432</guid>
      <dc:creator>kannareddy0</dc:creator>
      <dc:date>2018-08-02T23:35:36Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Export creating a blank SAS_empty_ sheet in the exported .xlsx file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Export-creating-a-blank-SAS-empty-sheet-in-the-exported/m-p/483651#M125447</link>
      <description>&lt;P&gt;This is a known feature as explained here:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://documentation.sas.com/?docsetId=acpcref&amp;amp;docsetTarget=n1qk7lv0f535qkn1mydookwetyrp.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_blank"&gt;http://documentation.sas.com/?docsetId=acpcref&amp;amp;docsetTarget=n1qk7lv0f535qkn1mydookwetyrp.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Do you get the same problem if writing to an XLS?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You could avoid the problem using a different engine, for example DBMS = EXCEL, although SAS/ACCESS to PC Files might require additional setup to allow that.&lt;/P&gt;</description>
      <pubDate>Fri, 03 Aug 2018 02:50:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Export-creating-a-blank-SAS-empty-sheet-in-the-exported/m-p/483651#M125447</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2018-08-03T02:50:58Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Export creating a blank SAS_empty_ sheet in the exported .xlsx file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Export-creating-a-blank-SAS-empty-sheet-in-the-exported/m-p/484009#M125588</link>
      <description>&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;Can you use the XLSX engine?&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc export data=sashelp.class
  outfile='C:\temp\class.xlsx'
  dbms=xlsx
  replace;
  sheet= 'class';
run; quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;Vince DelGobbo&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;SAS R&amp;amp;D&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 04 Aug 2018 11:52:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Export-creating-a-blank-SAS-empty-sheet-in-the-exported/m-p/484009#M125588</guid>
      <dc:creator>Vince_SAS</dc:creator>
      <dc:date>2018-08-04T11:52:08Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Export creating a blank SAS_empty_ sheet in the exported .xlsx file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Export-creating-a-blank-SAS-empty-sheet-in-the-exported/m-p/625414#M184321</link>
      <description>&lt;P&gt;Hello - i encountered the same issue but I need to use PCFILES since i'm creating/transferring xlsx files from SAS EG/Unix to Windows Shared Directory Folders. Here is my code - everything works but I don't like seeing the&amp;nbsp;&lt;FONT&gt;_SAS_empty_&lt;/FONT&gt; and i would like to do 1 of 2 options - A) somehow write a pass-through statement to drop the tab in addition to the table or B) Rename the&amp;nbsp;&lt;FONT&gt;_SAS_empty_&lt;/FONT&gt; to something else and load data into that tab. Here is my code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;OPTIONS SASTRACE=',,,d' SASTRACELOC=saslog nostsuffix;&lt;BR /&gt;LIBNAME MYXLSX PCFILES&lt;BR /&gt;server="&amp;lt;server&amp;gt;"&amp;nbsp;&lt;BR /&gt;serveruser='nt_a\xxxxxxxx' &amp;nbsp;&amp;nbsp;&lt;BR /&gt;serverpass='xxxxxxxxxxxx' &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;BR /&gt;PATH= '\\&amp;lt;PATH&amp;gt;\Defects Tracking 02.15.2020.XLSX' &amp;nbsp; &amp;nbsp; &amp;nbsp; /*CREATE THE NEW FILE*/&lt;BR /&gt;PORT=9621&lt;BR /&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;DATA MYXLSX.DAILYIMPORT; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; /*CREATE NEW TAB AND LOAD DATA*/&lt;BR /&gt;SET&amp;nbsp; WORK.DAILYIMPORT;&lt;BR /&gt;RUN;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;&lt;BR /&gt;PROC SQL;&lt;BR /&gt;CONNECT TO PCFILES&amp;nbsp; AS DB (SERVER="&amp;lt;SERVER&amp;gt;" PATH='\\&amp;lt;PATH&amp;gt;\Defects Tracking 02.15.2020.XLSX'&lt;BR /&gt;serveruser='nt_a\XXXXXXXX' serverpass='XXXXXXXXXX' PORT=9621);&lt;BR /&gt;EXECUTE(DROP table&amp;nbsp; `_SAS_empty_` ) BY DB; &amp;nbsp; &amp;nbsp;&lt;FONT&gt; /*ATTEMPT TO DROP WHOLE TAB BUT ONLY DROPS DATA*/&lt;/FONT&gt;&lt;BR /&gt;QUIT;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help or support would be greatly appreciated!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank You,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Feb 2020 19:46:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Export-creating-a-blank-SAS-empty-sheet-in-the-exported/m-p/625414#M184321</guid>
      <dc:creator>ElvisK</dc:creator>
      <dc:date>2020-02-17T19:46:14Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Export creating a blank SAS_empty_ sheet in the exported .xlsx file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Export-creating-a-blank-SAS-empty-sheet-in-the-exported/m-p/625423#M184323</link>
      <description>&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;If I understand correctly, SAS is running on UNIX and you need to create XLSX files that reside on Windows.&amp;nbsp; You use the PC Files Server to accomplish both tasks, but don't like the "_SAS_empty_" worksheet that is created.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;I don't think you can suppress or delete that worksheet; you would need to use DDE or Visual Basic code to post-process the file.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;Does your IT department provide any other way to get the files from the UNIX system to the Windows system?&amp;nbsp; Maybe a UNIX location that is mapped to a Windows shared drive or some other technique?&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;If so, then you can use the XLSX engine instead of PCFILES.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;Vince DelGobbo&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;SAS R&amp;amp;D&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Feb 2020 20:04:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Export-creating-a-blank-SAS-empty-sheet-in-the-exported/m-p/625423#M184323</guid>
      <dc:creator>Vince_SAS</dc:creator>
      <dc:date>2020-02-17T20:04:45Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Export creating a blank SAS_empty_ sheet in the exported .xlsx file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Export-creating-a-blank-SAS-empty-sheet-in-the-exported/m-p/625427#M184326</link>
      <description>&lt;P&gt;Unfortunately my Microsoft excel is 32BIT and SAS EG&amp;nbsp; is 64BIT&lt;/P&gt;</description>
      <pubDate>Mon, 17 Feb 2020 20:16:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Export-creating-a-blank-SAS-empty-sheet-in-the-exported/m-p/625427#M184326</guid>
      <dc:creator>ElvisK</dc:creator>
      <dc:date>2020-02-17T20:16:22Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Export creating a blank SAS_empty_ sheet in the exported .xlsx file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Export-creating-a-blank-SAS-empty-sheet-in-the-exported/m-p/625430#M184329</link>
      <description>&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;Can you provide more information about your concern?&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;There are no bitness issues with the XLSX engine.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;Vince DelGobbo&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;SAS R&amp;amp;D&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Feb 2020 20:20:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Export-creating-a-blank-SAS-empty-sheet-in-the-exported/m-p/625430#M184329</guid>
      <dc:creator>Vince_SAS</dc:creator>
      <dc:date>2020-02-17T20:20:23Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Export creating a blank SAS_empty_ sheet in the exported .xlsx file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Export-creating-a-blank-SAS-empty-sheet-in-the-exported/m-p/625434#M184333</link>
      <description>&lt;P&gt;ok - I have tried to either import/export or assign a libname using the xlsx engine and it does not work in any of those circumstances. The only time it works is if I am creating an xlsx file from a sas data set and storing/exporting to another unix folder?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What should the code look like if it was exporting or assigning a libname using the xlsx engine?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I pasted my code up that I currently using with pc file engine..thank you&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;libname:&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;OPTIONS SASTRACE=',,,d' SASTRACELOC=saslog nostsuffix;&amp;nbsp;&lt;BR /&gt;LIBNAME MYXLSX PCFILES&lt;BR /&gt;server="&amp;lt;server&amp;gt;"&amp;nbsp;&lt;BR /&gt;serveruser='nt_a\xxxxxxx' /*WINDOWS USERNAME*/&lt;BR /&gt;serverpass='xxxxxxxxx' /*WINDOWS PASSWORD*/&lt;BR /&gt;PATH= '\\&amp;lt;serverpath&amp;gt;\Defects Tracking 02.15.2020.XLSX'&lt;BR /&gt;PORT=9621&lt;BR /&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;PROC IMPORT OUT=&amp;amp;LIBR..DAILYIMPORT&lt;BR /&gt;DATAFILE="\\&amp;lt;server&amp;gt;\Defects Tracking &amp;amp;PRIOR_MNTH..&amp;amp;PRIOR_DY..&amp;amp;PRIOR_YR..xlsx"&amp;nbsp;&lt;BR /&gt;DBMS=EXCELCS REPLACE;/*&amp;nbsp;&lt;BR /&gt;SHEET='DAILY_FILE';&amp;nbsp;&lt;BR /&gt;server="&amp;lt;server&amp;gt;";&amp;nbsp;&lt;BR /&gt;serveruser=&amp;amp;WINDWS_NME;&amp;nbsp;&lt;BR /&gt;serverpass=&amp;amp;WINDWS_PAS;&lt;BR /&gt;port=9621;&amp;nbsp;&lt;BR /&gt;RUN;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;PROC EXPORT DATA=WORK.DFCT_VAL_1&amp;nbsp;&lt;BR /&gt;OUTFILE='\\&amp;lt;server&amp;gt;\Defects Tracking 02.14.2020A.XLSX' REPLACE&amp;nbsp;&lt;BR /&gt;DBMS=EXCELCS;&lt;BR /&gt;SHEET="DFCT_VAL_1";&amp;nbsp;&lt;BR /&gt;server="&amp;lt;SERVER&amp;gt;";&amp;nbsp;&lt;BR /&gt;serveruser='#######################';&amp;nbsp;&lt;BR /&gt;serverpass='########################';&amp;nbsp;&lt;BR /&gt;PORT=9621;&lt;BR /&gt;RUN;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Feb 2020 20:39:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Export-creating-a-blank-SAS-empty-sheet-in-the-exported/m-p/625434#M184333</guid>
      <dc:creator>ElvisK</dc:creator>
      <dc:date>2020-02-17T20:39:36Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Export creating a blank SAS_empty_ sheet in the exported .xlsx file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Export-creating-a-blank-SAS-empty-sheet-in-the-exported/m-p/625449#M184344</link>
      <description>&lt;P&gt;Any thoughts or suggestion?&lt;/P&gt;</description>
      <pubDate>Mon, 17 Feb 2020 21:31:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Export-creating-a-blank-SAS-empty-sheet-in-the-exported/m-p/625449#M184344</guid>
      <dc:creator>ElvisK</dc:creator>
      <dc:date>2020-02-17T21:31:20Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Export creating a blank SAS_empty_ sheet in the exported .xlsx file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Export-creating-a-blank-SAS-empty-sheet-in-the-exported/m-p/625474#M184357</link>
      <description>&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;Try this sample code:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;*  Directory on UNIX system, without quotation marks;

%let PATH=&lt;EM&gt;directory-specification&lt;/EM&gt;;

*  LIBNAME export example;

libname xl xlsx "&amp;amp;PATH/sashelp.xlsx";

data xl.class; set sashelp.class; run; quit;

libname xl clear;

*  PROC EXPORT example;

proc export data=sashelp.retail
  file="&amp;amp;PATH/sashelp.xlsx"
  dbms=xlsx
  replace;
  sheet='retail';
run; quit;

*  LIBNAME import example;

libname xl xlsx "&amp;amp;PATH/sashelp.xlsx";

data work.retail; set xl.retail; run; quit;

libname xl clear;

*  PROC IMPORT example;

proc import out=work.class
  file="&amp;amp;PATH/sashelp.xlsx"
  dbms=xlsx
  replace;
  sheet='class';
run; quit;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;Vince DelGobbo&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;SAS R&amp;amp;D&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Feb 2020 23:51:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Export-creating-a-blank-SAS-empty-sheet-in-the-exported/m-p/625474#M184357</guid>
      <dc:creator>Vince_SAS</dc:creator>
      <dc:date>2020-02-17T23:51:22Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Export creating a blank SAS_empty_ sheet in the exported .xlsx file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Export-creating-a-blank-SAS-empty-sheet-in-the-exported/m-p/625498#M184370</link>
      <description>&lt;P&gt;Thank you for your help Vince - Yes the following code works but it i'm not sure how it solves the issue since these xlsx files are residing on a unix shared directory directory and not on a windows shared directory folder? &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Feb 2020 02:39:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Export-creating-a-blank-SAS-empty-sheet-in-the-exported/m-p/625498#M184370</guid>
      <dc:creator>ElvisK</dc:creator>
      <dc:date>2020-02-18T02:39:20Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Export creating a blank SAS_empty_ sheet in the exported .xlsx file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Export-creating-a-blank-SAS-empty-sheet-in-the-exported/m-p/625504#M184371</link>
      <description>&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;That gets back to my earlier question:&lt;/FONT&gt;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;FONT face="verdana,geneva"&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13635"&gt;@Vince_SAS&lt;/a&gt;&amp;nbsp;wrote:&lt;/FONT&gt;&lt;BR /&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;Does your IT department provide any other way to get the files from the UNIX system to the Windows system? Maybe a UNIX location that is mapped to a Windows shared drive or some other technique? &amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;Contact your IT department to see if they have something set up.&amp;nbsp; Many installations have ways to share files between UNIX and Windows systems.&amp;nbsp; If not, then try FTP.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;Vince DelGobbo&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;SAS R&amp;amp;D&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Feb 2020 03:04:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Export-creating-a-blank-SAS-empty-sheet-in-the-exported/m-p/625504#M184371</guid>
      <dc:creator>Vince_SAS</dc:creator>
      <dc:date>2020-02-18T03:04:06Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Export creating a blank SAS_empty_ sheet in the exported .xlsx file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Export-creating-a-blank-SAS-empty-sheet-in-the-exported/m-p/627010#M185005</link>
      <description>&lt;P&gt;Thank you Vince - I had a discussion with our admins and created a ticket to get our pc folder main location mapped to a unix drive. I hope someone in the same situation reads this and doesn't attempt to give it a try on their own.&lt;/P&gt;</description>
      <pubDate>Mon, 24 Feb 2020 20:40:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Export-creating-a-blank-SAS-empty-sheet-in-the-exported/m-p/627010#M185005</guid>
      <dc:creator>ElvisK</dc:creator>
      <dc:date>2020-02-24T20:40:19Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Export creating a blank SAS_empty_ sheet in the exported .xlsx file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Export-creating-a-blank-SAS-empty-sheet-in-the-exported/m-p/627039#M185010</link>
      <description>&lt;P&gt;Sounds like you are using Enterprise guide .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #333333; cursor: text; font-family: 'HelevticaNeue-light','Helvetica Neue',Helvetica,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;I can't test this on my current setup, but I think you could use&lt;/SPAN&gt; copy files task to download your .xlsx from unix to windows .&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://blogs.sas.com/content/sasdummy/2013/05/20/export-and-download-any-file-from-sas-enterprise-guide/" target="_blank"&gt;https://blogs.sas.com/content/sasdummy/2013/05/20/export-and-download-any-file-from-sas-enterprise-guide/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Feb 2020 21:10:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Export-creating-a-blank-SAS-empty-sheet-in-the-exported/m-p/627039#M185010</guid>
      <dc:creator>fdsaaaa</dc:creator>
      <dc:date>2020-02-24T21:10:54Z</dc:date>
    </item>
  </channel>
</rss>

