<?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 How do I import an excel spreadsheet (microsoft 365 32-bit) into SAS 9.4 in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/How-do-I-import-an-excel-spreadsheet-microsoft-365-32-bit-into/m-p/626831#M20442</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please help. I've searched for the right answer to this but everything that I try doesn't work. I'm simply trying to import an excel spreadsheet (.xlsx, microsoft 365, 32-bit) into my SAS (v9.4). I'm quite a novice, so my go-to is the import wizard, but according to the posts I've found, I can't do that with the program versions I have. They recommended downloading the PC files add-on, which would allow me to use the import wizard again, but the &lt;SPAN style="color: #000000; font-family: 'Times New Roman'; font-size: medium; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;"&gt;SAS Private Java Runtime Environment (64-bit)&lt;/SPAN&gt; didn't download and install properly. I then tried saving the excel spreadsheet as a CSV, which worked, but then several of my character variables were cut off (i.e., instead of yes, it reads as ye, or instead of pulmonary, it reads as pulomon). I have about 1607 observations with about 32 variables so going through each one to make sure it wasn't cut off would be a time-consuming process. What is the best way for me to proceed?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
    <pubDate>Mon, 24 Feb 2020 10:45:44 GMT</pubDate>
    <dc:creator>ms2370</dc:creator>
    <dc:date>2020-02-24T10:45:44Z</dc:date>
    <item>
      <title>How do I import an excel spreadsheet (microsoft 365 32-bit) into SAS 9.4</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-do-I-import-an-excel-spreadsheet-microsoft-365-32-bit-into/m-p/626831#M20442</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please help. I've searched for the right answer to this but everything that I try doesn't work. I'm simply trying to import an excel spreadsheet (.xlsx, microsoft 365, 32-bit) into my SAS (v9.4). I'm quite a novice, so my go-to is the import wizard, but according to the posts I've found, I can't do that with the program versions I have. They recommended downloading the PC files add-on, which would allow me to use the import wizard again, but the &lt;SPAN style="color: #000000; font-family: 'Times New Roman'; font-size: medium; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;"&gt;SAS Private Java Runtime Environment (64-bit)&lt;/SPAN&gt; didn't download and install properly. I then tried saving the excel spreadsheet as a CSV, which worked, but then several of my character variables were cut off (i.e., instead of yes, it reads as ye, or instead of pulmonary, it reads as pulomon). I have about 1607 observations with about 32 variables so going through each one to make sure it wasn't cut off would be a time-consuming process. What is the best way for me to proceed?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Mon, 24 Feb 2020 10:45:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-do-I-import-an-excel-spreadsheet-microsoft-365-32-bit-into/m-p/626831#M20442</guid>
      <dc:creator>ms2370</dc:creator>
      <dc:date>2020-02-24T10:45:44Z</dc:date>
    </item>
    <item>
      <title>Re: How do I import an excel spreadsheet (microsoft 365 32-bit) into SAS 9.4</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-do-I-import-an-excel-spreadsheet-microsoft-365-32-bit-into/m-p/626840#M20443</link>
      <description>&lt;BLOCKQUOTE&gt;
&lt;P&gt;I then tried saving the excel spreadsheet as a CSV, which worked, but then several of my character variables were cut off (i.e., instead of yes, it reads as ye, or instead of pulmonary, it reads as pulomon).&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try guessingrows=max option:&lt;/P&gt;
&lt;P&gt;proc import datafile= .......;&lt;/P&gt;
&lt;P&gt;guessingrows=max;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Feb 2020 12:00:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-do-I-import-an-excel-spreadsheet-microsoft-365-32-bit-into/m-p/626840#M20443</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2020-02-24T12:00:09Z</dc:date>
    </item>
    <item>
      <title>Re: How do I import an excel spreadsheet (microsoft 365 32-bit) into SAS 9.4</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-do-I-import-an-excel-spreadsheet-microsoft-365-32-bit-into/m-p/626859#M20445</link>
      <description>&lt;P&gt;Try just reading the XLSX file directly (without the point and click wizard).&lt;/P&gt;
&lt;P&gt;Make a libref that points to the file using the XLSX engine.&amp;nbsp; Then you can read the individual sheets.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname myfile xlsx 'path to file/filename.xlsx';&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Or just copy all of them out&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc copy inlib=myfile out=work;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 24 Feb 2020 13:31:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-do-I-import-an-excel-spreadsheet-microsoft-365-32-bit-into/m-p/626859#M20445</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2020-02-24T13:31:56Z</dc:date>
    </item>
    <item>
      <title>Re: How do I import an excel spreadsheet (microsoft 365 32-bit) into SAS 9.4</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-do-I-import-an-excel-spreadsheet-microsoft-365-32-bit-into/m-p/627147#M20492</link>
      <description>&lt;P&gt;What do I do once I create the libref to the XLSX engine? I only have one sheet in the workbook.&lt;/P&gt;</description>
      <pubDate>Tue, 25 Feb 2020 10:46:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-do-I-import-an-excel-spreadsheet-microsoft-365-32-bit-into/m-p/627147#M20492</guid>
      <dc:creator>ms2370</dc:creator>
      <dc:date>2020-02-25T10:46:33Z</dc:date>
    </item>
  </channel>
</rss>

