<?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: import xls with numeric/characters data in SAS in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/import-xls-with-numeric-characters-data-in-SAS/m-p/344904#M79315</link>
    <description>&lt;P&gt;Hi Kurt,&lt;/P&gt;&lt;P&gt;Many thanks for your explanation.&lt;/P&gt;&lt;P&gt;I resolved my question by your and Reeza's reply in another post "&lt;SPAN&gt;How to convert XML files to XLS (Excel 2003)?". All&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;files saved by tagsets excel.xp can be convered to XLS now.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;However, the next step after converting XML to XLS, I would like to import to SAS back&amp;nbsp;with code:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Proc Import datafile="xxx.xls" out=test dbms=excel replace; mixed=yes; &lt;STRONG&gt;guessingrows=100;&lt;/STRONG&gt; sheet="sheet1"; run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Per other posts in SAS communities,&amp;nbsp;&lt;STRONG&gt;guessingrows&amp;nbsp;&lt;/STRONG&gt;option seems not work for &lt;STRONG&gt;XLS&lt;/STRONG&gt; file, so after that I converted XML to XLSX and tried to import it with &lt;STRONG&gt;mixed=yes&lt;/STRONG&gt; again. It works, &lt;STRONG&gt;BUT&lt;/STRONG&gt; some floats will not displayed what I want. Is there any suggestion to keep the format of floats without another complicated statement? because there're many XLSX files need to be imported. Or, is there&amp;nbsp;suitable code to convert XML to CSV? maybe change the file format num in red as the following code: put " oXL.ActiveWorkBook.SaveAs Left(aFile, Len(aFile) - 4) &amp;amp; ""&lt;FONT color="#FF0000"&gt;.xls&lt;/FONT&gt;"",&lt;FONT color="#FF0000"&gt;-4143&lt;/FONT&gt;";&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;JC&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 28 Mar 2017 09:30:29 GMT</pubDate>
    <dc:creator>JohnChen_TW</dc:creator>
    <dc:date>2017-03-28T09:30:29Z</dc:date>
    <item>
      <title>import xls with numeric/characters data in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/import-xls-with-numeric-characters-data-in-SAS/m-p/343161#M78755</link>
      <description>&lt;P&gt;HI, I'm using SAS 9.3 to import xls file in SAS. Before this, I exported excel file by "ODS TAGSETS.EXCELXP" from SAS and&amp;nbsp;the type of all excel files will be "xls". The question is that the character data in the variable with both num and char type will be transferred to "." when I importing it. However, I have tried to use "GUESSINGROWS" but it did not work...because the default of rows in xls file is 8.&lt;/P&gt;&lt;P&gt;Also I have searched another way to resolve this question from wedsite is&amp;nbsp;to change xls file into csv. But I think it&amp;nbsp;will make procedure more complicated (maybe).&lt;/P&gt;&lt;P&gt;Does anyone has&amp;nbsp;any suggestion?&lt;/P&gt;</description>
      <pubDate>Wed, 22 Mar 2017 03:24:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/import-xls-with-numeric-characters-data-in-SAS/m-p/343161#M78755</guid>
      <dc:creator>JohnChen_TW</dc:creator>
      <dc:date>2017-03-22T03:24:00Z</dc:date>
    </item>
    <item>
      <title>Re: import xls with numeric/characters data in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/import-xls-with-numeric-characters-data-in-SAS/m-p/343164#M78757</link>
      <description>&lt;P&gt;Files exported using Tagsets.ExcelXP aren't suited to being imported again - for one they're xml not xls. Assuming you've actually converted the files to xls then check the MIXED=YES option, the default is NO.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;GuessingRows is not a valid option for Excel files or at least it won't work as expected, it needs to be set in the registry.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Mar 2017 03:34:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/import-xls-with-numeric-characters-data-in-SAS/m-p/343164#M78757</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-03-22T03:34:43Z</dc:date>
    </item>
    <item>
      <title>Re: import xls with numeric/characters data in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/import-xls-with-numeric-characters-data-in-SAS/m-p/343172#M78759</link>
      <description>&lt;P&gt;Thank you Reeza,&lt;BR /&gt;The file which I converted by "ODS TAGSETS.EXCELXP FILE='xxx.xls'" is created by "PROC REPORT statement" first.&lt;BR /&gt;Yes, I imported the xls files with MIXED=YES (code as below) but I need to open it&amp;nbsp;to import. And this is an another trouble.&lt;BR /&gt;&lt;BR /&gt;Import code: PROC IMPORT DATAFILE="xxx.xls" OUT=yyy REPLACE ;MIXED=Yes;SHEET="Sheet"; RUN;&lt;BR /&gt;&lt;BR /&gt;John&lt;/P&gt;</description>
      <pubDate>Wed, 22 Mar 2017 05:17:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/import-xls-with-numeric-characters-data-in-SAS/m-p/343172#M78759</guid>
      <dc:creator>JohnChen_TW</dc:creator>
      <dc:date>2017-03-22T05:17:43Z</dc:date>
    </item>
    <item>
      <title>Re: import xls with numeric/characters data in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/import-xls-with-numeric-characters-data-in-SAS/m-p/343196#M78774</link>
      <description>&lt;P&gt;What &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt; with "converted" meant, was that you have to open the file in Excel and save it as xls/xlsx file manually. Only then it can be imported again.&lt;/P&gt;</description>
      <pubDate>Wed, 22 Mar 2017 08:05:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/import-xls-with-numeric-characters-data-in-SAS/m-p/343196#M78774</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2017-03-22T08:05:13Z</dc:date>
    </item>
    <item>
      <title>Re: import xls with numeric/characters data in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/import-xls-with-numeric-characters-data-in-SAS/m-p/343201#M78779</link>
      <description>&lt;P&gt;When using TAGSETS.EXCELXP, always use the proper filename extension (.xml).&lt;/P&gt;
&lt;P&gt;That prevents mixups as you have just experienced.&lt;/P&gt;
&lt;P&gt;Excel usually complains nowadays when the filename extension does not match the file contents.&lt;/P&gt;</description>
      <pubDate>Wed, 22 Mar 2017 08:25:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/import-xls-with-numeric-characters-data-in-SAS/m-p/343201#M78779</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-03-22T08:25:31Z</dc:date>
    </item>
    <item>
      <title>Re: import xls with numeric/characters data in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/import-xls-with-numeric-characters-data-in-SAS/m-p/343213#M78784</link>
      <description>Okay, thanks for your explanation. Now, I understand what "converted" means.</description>
      <pubDate>Wed, 22 Mar 2017 09:18:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/import-xls-with-numeric-characters-data-in-SAS/m-p/343213#M78784</guid>
      <dc:creator>JohnChen_TW</dc:creator>
      <dc:date>2017-03-22T09:18:29Z</dc:date>
    </item>
    <item>
      <title>Re: import xls with numeric/characters data in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/import-xls-with-numeric-characters-data-in-SAS/m-p/343215#M78785</link>
      <description>&lt;P&gt;Actually, it's not that I export excel file but export all outputs to excel file by "&lt;SPAN&gt;ODS TAGSETS.EXCELXP".&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Mar 2017 09:32:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/import-xls-with-numeric-characters-data-in-SAS/m-p/343215#M78785</guid>
      <dc:creator>JohnChen_TW</dc:creator>
      <dc:date>2017-03-22T09:32:55Z</dc:date>
    </item>
    <item>
      <title>Re: import xls with numeric/characters data in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/import-xls-with-numeric-characters-data-in-SAS/m-p/343219#M78786</link>
      <description>Tagsets.excelxp DOES NOT create an XLS file, it creates an XML file. This is the default, you can change the extension but the underlying file is still xml.</description>
      <pubDate>Wed, 22 Mar 2017 09:59:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/import-xls-with-numeric-characters-data-in-SAS/m-p/343219#M78786</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-03-22T09:59:26Z</dc:date>
    </item>
    <item>
      <title>Re: import xls with numeric/characters data in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/import-xls-with-numeric-characters-data-in-SAS/m-p/343223#M78789</link>
      <description>I do not understand what you mean. It can save output as excel.xls indeed.&lt;BR /&gt;&lt;BR /&gt;Code:&lt;BR /&gt;ods tagsets.excelxp file="C:\Users\john.chen\Desktop\spacing.xls";&lt;BR /&gt;&lt;BR /&gt;proc sort data=sashelp.class out=class;&lt;BR /&gt;by age;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;proc print data=class;&lt;BR /&gt;by age;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;ods tagsets.excelxp close;&lt;BR /&gt;&lt;BR /&gt;JC</description>
      <pubDate>Wed, 22 Mar 2017 10:40:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/import-xls-with-numeric-characters-data-in-SAS/m-p/343223#M78789</guid>
      <dc:creator>JohnChen_TW</dc:creator>
      <dc:date>2017-03-22T10:40:53Z</dc:date>
    </item>
    <item>
      <title>Re: import xls with numeric/characters data in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/import-xls-with-numeric-characters-data-in-SAS/m-p/343233#M78792</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods tagsets.excelxp file="C:\Users\john.chen\Desktop\spacing.xls";&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;This does NOT create an Excel file, it creates an incorrectly named XML file. To verify that, just open it with a text editor, and then try to do the same with a .xls file saved from Excel. This is why Excel later complains when opening such an incorrectly named file (at least the recent versions of Excel do).&lt;/P&gt;
&lt;P&gt;The content of this file is XML code which is kind of a precursor to the XML that is now used in .xlsx files. But these XLSX files are also zip-compressed when saved, while the output from TAGSETS.EXCELXP is not.&lt;/P&gt;</description>
      <pubDate>Wed, 22 Mar 2017 11:44:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/import-xls-with-numeric-characters-data-in-SAS/m-p/343233#M78792</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-03-22T11:44:31Z</dc:date>
    </item>
    <item>
      <title>Re: import xls with numeric/characters data in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/import-xls-with-numeric-characters-data-in-SAS/m-p/343299#M78807</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Why&lt;/STRONG&gt; are you re-importing results from SAS output? Do you mean that you with your system create output with Tagsets. Excelxp and then turn around and import that? &lt;STRONG&gt;Why?&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Mar 2017 14:49:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/import-xls-with-numeric-characters-data-in-SAS/m-p/343299#M78807</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2017-03-22T14:49:34Z</dc:date>
    </item>
    <item>
      <title>Re: import xls with numeric/characters data in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/import-xls-with-numeric-characters-data-in-SAS/m-p/343567#M78881</link>
      <description>&lt;P&gt;ballardw, thanks for your asking.&lt;/P&gt;&lt;P&gt;The reason is that there will two excel files need to be created by two persons from one source dataset which was arranged first, and then outputted by PROC REPORT statement, respectively.&lt;/P&gt;&lt;P&gt;After that I will import these two excel files and&amp;nbsp;verify them&amp;nbsp;to ensure the data was correctly transferred from the source dataset.&lt;/P&gt;&lt;P&gt;So, that is why I need to import excel files back again.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;JC&lt;/P&gt;</description>
      <pubDate>Thu, 23 Mar 2017 02:07:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/import-xls-with-numeric-characters-data-in-SAS/m-p/343567#M78881</guid>
      <dc:creator>JohnChen_TW</dc:creator>
      <dc:date>2017-03-23T02:07:39Z</dc:date>
    </item>
    <item>
      <title>Re: import xls with numeric/characters data in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/import-xls-with-numeric-characters-data-in-SAS/m-p/343573#M78885</link>
      <description>Yes, your are right.&lt;BR /&gt;I tried to open an XLS file created by 'ods tagsets.excelxp' with text editor and the format of data is matched with XML code.&lt;BR /&gt;Sorry, I do not understand what the TAGSETS.EXCELXP really do.&lt;BR /&gt;Bear with me, still learning - if the file created by TAGSETS.EXCELXP is not XLS file for real. Why I could import it by PROC IMPORT DATAFILE="xxx.XLS"?.&lt;BR /&gt;&lt;BR /&gt;JC</description>
      <pubDate>Thu, 23 Mar 2017 02:28:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/import-xls-with-numeric-characters-data-in-SAS/m-p/343573#M78885</guid>
      <dc:creator>JohnChen_TW</dc:creator>
      <dc:date>2017-03-23T02:28:46Z</dc:date>
    </item>
    <item>
      <title>Re: import xls with numeric/characters data in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/import-xls-with-numeric-characters-data-in-SAS/m-p/343606#M78899</link>
      <description>&lt;P&gt;proc import for xls files implements a module supplied by Microsoft that converts tabular data from Excel files into a standardized format, which is then imported into SAS. This module can basically open everything that Excel itself can open, but it has its limitations, as you experienced.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From another post of yours I have the impression that you use Excel just as some kind of glorified input tool. If that guess is right, wouldn't you be better off by using a stored process and HTML input forms?&lt;/P&gt;</description>
      <pubDate>Thu, 23 Mar 2017 07:09:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/import-xls-with-numeric-characters-data-in-SAS/m-p/343606#M78899</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-03-23T07:09:36Z</dc:date>
    </item>
    <item>
      <title>Re: import xls with numeric/characters data in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/import-xls-with-numeric-characters-data-in-SAS/m-p/343629#M78909</link>
      <description>&lt;P&gt;Could you give a specific example of stored process and HTML input forms or how to export output to a real excel? I have no idea how to create another kind of files to stored my output instead of using TAGSETS.EXCELXP. Furthermore, the format of these files have to match&amp;nbsp;the corresponding PDF file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please see the following code and attachments as PDF file and XML file:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data class; set sashelp.class; run;

/*=== PDF and XLS(incorrectly named XML) ===*/
ODS TAGSETS.EXCELXP FILE='C:\Users\john.chen\Desktop\Try.xls'; 
PROC REPORT data=class nowd
split= ',';
columns Name Sex Age Height Weight;
define Name      /center 'Name';
define Sex       /center 'Sex' '';
define Age       /center 'Age,(years)';
define Height    /center 'Height,(feet)';
define Weight    /center 'Weight,(lb)';

ods printer pdf file="C:\Users\john.chen\Desktop\Try.pdf"; run;
ods printer pdf close;
ODS TAGSETS.EXCELXP CLOSE;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Mar 2017 09:39:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/import-xls-with-numeric-characters-data-in-SAS/m-p/343629#M78909</guid>
      <dc:creator>JohnChen_TW</dc:creator>
      <dc:date>2017-03-23T09:39:52Z</dc:date>
    </item>
    <item>
      <title>Re: import xls with numeric/characters data in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/import-xls-with-numeric-characters-data-in-SAS/m-p/343632#M78910</link>
      <description>&lt;P&gt;I wanted to take a view on your whole process. What is being done with the Excel file between export and import? What data is added to it?&lt;/P&gt;
&lt;P&gt;Does it deal with whole tables, or are single lines added?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Mar 2017 09:49:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/import-xls-with-numeric-characters-data-in-SAS/m-p/343632#M78910</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-03-23T09:49:38Z</dc:date>
    </item>
    <item>
      <title>Re: import xls with numeric/characters data in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/import-xls-with-numeric-characters-data-in-SAS/m-p/343635#M78912</link>
      <description>&lt;P&gt;After that I would use the following code to import it in SAS.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc import datafile="C:\Users\john.chen\Desktop\Try.xls" out=Try replace; mixed=yes; sheet="Table 1 - Detailed and or summa"; run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;This is the whole process to output data in PDF and XLS file, and then import it to SAS again to check if the data was correctly trasferred from the source data (sashelp.class).&lt;/P&gt;</description>
      <pubDate>Thu, 23 Mar 2017 10:00:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/import-xls-with-numeric-characters-data-in-SAS/m-p/343635#M78912</guid>
      <dc:creator>JohnChen_TW</dc:creator>
      <dc:date>2017-03-23T10:00:49Z</dc:date>
    </item>
    <item>
      <title>Re: import xls with numeric/characters data in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/import-xls-with-numeric-characters-data-in-SAS/m-p/343638#M78913</link>
      <description>&lt;P&gt;It only makes sense to check for correct output when you export DATA only. When you use tagsets.excelxp to create Excel style formatting, you change/expand the data so that it becomes un-importable.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You might be better off using libname xlsx, use proc copy to copy data into a sheet in the xlsx, and then run proc compare on that.&lt;/P&gt;</description>
      <pubDate>Thu, 23 Mar 2017 10:16:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/import-xls-with-numeric-characters-data-in-SAS/m-p/343638#M78913</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-03-23T10:16:03Z</dc:date>
    </item>
    <item>
      <title>Re: import xls with numeric/characters data in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/import-xls-with-numeric-characters-data-in-SAS/m-p/343640#M78914</link>
      <description>Thanks for your explanation.&lt;BR /&gt;So, 'libname xlsx' or 'proc copy' can be used with proc report, am I right?</description>
      <pubDate>Thu, 23 Mar 2017 10:23:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/import-xls-with-numeric-characters-data-in-SAS/m-p/343640#M78914</guid>
      <dc:creator>JohnChen_TW</dc:creator>
      <dc:date>2017-03-23T10:23:37Z</dc:date>
    </item>
    <item>
      <title>Re: import xls with numeric/characters data in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/import-xls-with-numeric-characters-data-in-SAS/m-p/343652#M78916</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/118383"&gt;@JohnChen_TW&lt;/a&gt; wrote:&lt;BR /&gt;Thanks for your explanation.&lt;BR /&gt;So, 'libname xlsx' or 'proc copy' can be used with proc report, am I right?&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;NO! Proc report creates&amp;nbsp;&lt;U&gt;reports&lt;/U&gt;, which are no suited for re-importing. Proc copy copies&amp;nbsp;&lt;U&gt;data&lt;/U&gt;. Data can be re-imported and compared.&lt;/P&gt;</description>
      <pubDate>Thu, 23 Mar 2017 10:50:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/import-xls-with-numeric-characters-data-in-SAS/m-p/343652#M78916</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-03-23T10:50:33Z</dc:date>
    </item>
  </channel>
</rss>

