<?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: How to create an excel sheet in Z/OS and place it in a desktop in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-an-excel-sheet-in-Z-OS-and-place-it-in-a-desktop/m-p/126951#M25869</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to give us a little more information about your environment.&amp;nbsp; Presumably you have SAS licensed on at least one platform.&amp;nbsp; Tell us more.&lt;/P&gt;&lt;P&gt;Otherwise all we can say is to create a CSV file in a SAS datastep and download it (with appropriate EBCDIC conversion) to import into MS Excel. Or, if you are up to it, use ODBC to create a file in a format that Excel can open.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Richard in Oz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 15 Nov 2012 09:06:25 GMT</pubDate>
    <dc:creator>RichardinOz</dc:creator>
    <dc:date>2012-11-15T09:06:25Z</dc:date>
    <item>
      <title>How to create an excel sheet in Z/OS and place it in a desktop</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-an-excel-sheet-in-Z-OS-and-place-it-in-a-desktop/m-p/126950#M25868</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to create a excel sheet from a mainframe VSAM file and place that excel in a PC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Saroj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Nov 2012 08:30:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-create-an-excel-sheet-in-Z-OS-and-place-it-in-a-desktop/m-p/126950#M25868</guid>
      <dc:creator>Sarojkumar</dc:creator>
      <dc:date>2012-11-15T08:30:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to create an excel sheet in Z/OS and place it in a desktop</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-an-excel-sheet-in-Z-OS-and-place-it-in-a-desktop/m-p/126951#M25869</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to give us a little more information about your environment.&amp;nbsp; Presumably you have SAS licensed on at least one platform.&amp;nbsp; Tell us more.&lt;/P&gt;&lt;P&gt;Otherwise all we can say is to create a CSV file in a SAS datastep and download it (with appropriate EBCDIC conversion) to import into MS Excel. Or, if you are up to it, use ODBC to create a file in a format that Excel can open.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Richard in Oz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Nov 2012 09:06:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-create-an-excel-sheet-in-Z-OS-and-place-it-in-a-desktop/m-p/126951#M25869</guid>
      <dc:creator>RichardinOz</dc:creator>
      <dc:date>2012-11-15T09:06:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to create an excel sheet in Z/OS and place it in a desktop</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-an-excel-sheet-in-Z-OS-and-place-it-in-a-desktop/m-p/126952#M25870</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SAS is installed in mainframe. The requirement is like - we have to create the output in excel file and to place it in C: drive. Would you like to know any more info. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Nov 2012 11:37:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-create-an-excel-sheet-in-Z-OS-and-place-it-in-a-desktop/m-p/126952#M25870</guid>
      <dc:creator>Sarojkumar</dc:creator>
      <dc:date>2012-11-15T11:37:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to create an excel sheet in Z/OS and place it in a desktop</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-an-excel-sheet-in-Z-OS-and-place-it-in-a-desktop/m-p/126953#M25871</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Unless you also have SAS installed on a PC and SAS Connect installed on both platforms, your simplest course would be the one I outlined.&lt;/P&gt;&lt;P&gt;Write a SAS datastep to read your VSAM data, then either use PROC EXPORT (if available on your platform) or a second datastep to write out all values as "comma separated values", ie as text fields with a comma between each.&amp;nbsp; The first line of the file should contain the column names, again separated by a comma.&amp;nbsp; Often, this line is the longest in the file and can be used to set LRECL on the output file.&amp;nbsp; Make sure that any dates are formatted as DATE9 or YYMMDD10, and timestamps are formatted as DATETIME20 at least, or TIME8 if there is no date information.&lt;/P&gt;&lt;P&gt;Next download this file to a Windows PC that has MS Office installed.&amp;nbsp; Make sure the EBCDIC to ASCII conversion takes place, and the file is saved with a .csv extension. In recent Microsoft installations, double clicking on a csv file will open it in MS Excel.&amp;nbsp; You can then check that the file has been correctly downloaded and pass it for user acceptance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note that this method will not apply any formatting to the the spreadsheet, nor any titles or pivot tables or charts.&amp;nbsp; If any of these are required, you may need a VBA programmer to create a destination workbook that will pick up data in the sheet you have created.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Richard in Oz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Nov 2012 12:05:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-create-an-excel-sheet-in-Z-OS-and-place-it-in-a-desktop/m-p/126953#M25871</guid>
      <dc:creator>RichardinOz</dc:creator>
      <dc:date>2012-11-15T12:05:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to create an excel sheet in Z/OS and place it in a desktop</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-create-an-excel-sheet-in-Z-OS-and-place-it-in-a-desktop/m-p/126954#M25872</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could also use the EXCELXP tagset to create an XML file.&amp;nbsp; That would give you more flexibility than a simple CSV file.&amp;nbsp; It can also create multiple sheets in the workbook.&amp;nbsp; Then FTP it where you need it.&amp;nbsp; (I had to specify on FTP filename statement ENCODING=PCOEM437 to get it to work.)&amp;nbsp; XML files are really bloated so once you get it to your PC by doing a 'SAVE AS' XSLX will save a lot of space.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Nov 2012 16:30:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-create-an-excel-sheet-in-Z-OS-and-place-it-in-a-desktop/m-p/126954#M25872</guid>
      <dc:creator>verne</dc:creator>
      <dc:date>2012-11-15T16:30:54Z</dc:date>
    </item>
  </channel>
</rss>

