<?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 Import eliminating zeroes from decimal places in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Proc-Import-eliminating-zeroes-from-decimal-places/m-p/85952#M18441</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;LIBNAME offers you more flexibility. You could use something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;libname xl Excel "myFile.xls";&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data myDataset;&lt;/P&gt;&lt;P&gt;set xl.'Sheet1$'n;&lt;/P&gt;&lt;P&gt;format myVar 12.2;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;libname xl clear;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 06 Aug 2012 21:21:11 GMT</pubDate>
    <dc:creator>PGStats</dc:creator>
    <dc:date>2012-08-06T21:21:11Z</dc:date>
    <item>
      <title>Proc Import eliminating zeroes from decimal places</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Import-eliminating-zeroes-from-decimal-places/m-p/85948#M18437</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am importing an excel first&amp;nbsp; to sas dataset .When I am importing(using PROC IMPORT) it, the excel which has values like 5.10, 5.20,2.22 ;in SAS dataset they are converted to 5.1,5.2, 2.22 resp.&lt;/P&gt;&lt;P&gt;I dont want the zeroes from decimal places to be removed by SAS while importing to sas dataset. How can I do that?&lt;/P&gt;&lt;P&gt;Thanks!!&lt;/P&gt;&lt;P&gt;Megha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Aug 2012 20:12:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Import-eliminating-zeroes-from-decimal-places/m-p/85948#M18437</guid>
      <dc:creator>maggi2410</dc:creator>
      <dc:date>2012-08-06T20:12:06Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Import eliminating zeroes from decimal places</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Import-eliminating-zeroes-from-decimal-places/m-p/85949#M18438</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SAS does not 'remove' zeroes when importing data, but may apply a default format to imported data if none is supplied such as BEST12. This format has the effect of not displaying trailing zeroes for decimal places. Try assinging a different format to your numeric variables like 12.2 to retain zeroes in decimal places. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Aug 2012 20:27:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Import-eliminating-zeroes-from-decimal-places/m-p/85949#M18438</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2012-08-06T20:27:52Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Import eliminating zeroes from decimal places</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Import-eliminating-zeroes-from-decimal-places/m-p/85950#M18439</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I cannot change the excel. May be I need to use the data step version of Prioc import and tweak it then? Do anyone think of anyother way to do so?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Aug 2012 20:39:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Import-eliminating-zeroes-from-decimal-places/m-p/85950#M18439</guid>
      <dc:creator>maggi2410</dc:creator>
      <dc:date>2012-08-06T20:39:57Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Import eliminating zeroes from decimal places</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Import-eliminating-zeroes-from-decimal-places/m-p/85951#M18440</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Proc import does things by itself (fully automated), I don't think you can do anything about it regarding this matter. Since you are open to data step approach, here is another way:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;filename tt 'c:\test\test.txt';&amp;nbsp; /*change to your path and file*/&lt;/P&gt;&lt;P&gt;libname exl excel 'c:\test\test.xls'; /*change to your path and file*/&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/*if you need to do something using SAS tables, otherwise skip next 2 data step*/&lt;/P&gt;&lt;P&gt;data want;&lt;/P&gt;&lt;P&gt;set exl.'sheet1$'n;&lt;/P&gt;&lt;P&gt;format var 5.2;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;data _null_;&lt;/P&gt;&lt;P&gt;file tt;&lt;/P&gt;&lt;P&gt;set want;&lt;/P&gt;&lt;P&gt;put var;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/*the direct path from excel to txt*/&lt;/P&gt;&lt;P&gt;data _null_;&lt;/P&gt;&lt;P&gt;file tt;&lt;/P&gt;&lt;P&gt;set exl.'sheet1$'n;&lt;/P&gt;&lt;P&gt;put var 5.2;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Haikuo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Aug 2012 21:20:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Import-eliminating-zeroes-from-decimal-places/m-p/85951#M18440</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2012-08-06T21:20:30Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Import eliminating zeroes from decimal places</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Import-eliminating-zeroes-from-decimal-places/m-p/85952#M18441</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;LIBNAME offers you more flexibility. You could use something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;libname xl Excel "myFile.xls";&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data myDataset;&lt;/P&gt;&lt;P&gt;set xl.'Sheet1$'n;&lt;/P&gt;&lt;P&gt;format myVar 12.2;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;libname xl clear;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Aug 2012 21:21:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Import-eliminating-zeroes-from-decimal-places/m-p/85952#M18441</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2012-08-06T21:21:11Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Import eliminating zeroes from decimal places</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Import-eliminating-zeroes-from-decimal-places/m-p/85953#M18442</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks everybody for your answers.&lt;/P&gt;&lt;P&gt;Buy my data can have values like 12.20, 12.22 and 12.1 as well. If its just 12.1, then I dont want it to be converted to 12.10 (by adding the format 5.2) or something . Even best5.2 doesn't work&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Aug 2012 21:46:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Import-eliminating-zeroes-from-decimal-places/m-p/85953#M18442</guid>
      <dc:creator>maggi2410</dc:creator>
      <dc:date>2012-08-06T21:46:12Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Import eliminating zeroes from decimal places</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Import-eliminating-zeroes-from-decimal-places/m-p/85954#M18443</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Looks like to me that the only option left is to convert the variable to character. Have you tried that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Haikuo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Aug 2012 21:54:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Import-eliminating-zeroes-from-decimal-places/m-p/85954#M18443</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2012-08-06T21:54:41Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Import eliminating zeroes from decimal places</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Import-eliminating-zeroes-from-decimal-places/m-p/85955#M18444</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then I think you have to use a pure datastep approach where you read the excel data for that field as character.&amp;nbsp; I know of two ways to do that.&amp;nbsp; One, a paper that a group of us presented at SGF this year.&amp;nbsp; You can find it, and its code, by doing a Google search for copy and paste almost anything.&amp;nbsp; The code is at the hit you will receive from that search that is located at sascommunity.org.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alternatively, you can make a copy of the spreadsheet, add one extra record (which you will delete after the import) that is the same as the first record but contains a string like xxx for that field, and use the mixed option.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Aug 2012 21:56:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Import-eliminating-zeroes-from-decimal-places/m-p/85955#M18444</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-08-06T21:56:34Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Import eliminating zeroes from decimal places</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Import-eliminating-zeroes-from-decimal-places/m-p/85956#M18445</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Art, your paper is too deep for me :smileysilly:. I had it open for 2 weeks, still hasn't finished it. But thank you very much, this will push me to learn!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Haikuo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Aug 2012 22:03:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Import-eliminating-zeroes-from-decimal-places/m-p/85956#M18445</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2012-08-06T22:03:26Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Import eliminating zeroes from decimal places</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Import-eliminating-zeroes-from-decimal-places/m-p/85957#M18446</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Art. Yes I guess I will take a lot of time too for reading the paper. &lt;/P&gt;&lt;P&gt;Thanks Haikuo. But converting into cahracter also doesnt work &lt;/P&gt;&lt;P&gt;May be I will start exploring ods tagsets then. I guess it could help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Aug 2012 22:10:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Import-eliminating-zeroes-from-decimal-places/m-p/85957#M18446</guid>
      <dc:creator>maggi2410</dc:creator>
      <dc:date>2012-08-06T22:10:05Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Import eliminating zeroes from decimal places</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Import-eliminating-zeroes-from-decimal-places/m-p/85958#M18447</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;@Haikuo: The nice thing about the code presented in that paper is that one doesn't have to be able to understand the code in order to make good use of it.&amp;nbsp; However, that said, understanding the code gives one the benefit of being able to improve its functionality.&amp;nbsp; I, personally, have improved the code for a re-presentation of it I've been asked to do next month at the MWSUG meeting, and am just now looking at a further expansion of the idea for an invited paper at next year's SGF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regardless, honestly, I think the easiest way for the current OP to solve the problem is with the modified workbook as I described in my last post to this thread.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Aug 2012 22:40:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Import-eliminating-zeroes-from-decimal-places/m-p/85958#M18447</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-08-06T22:40:07Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Import eliminating zeroes from decimal places</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Import-eliminating-zeroes-from-decimal-places/m-p/85959#M18448</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I agree. That is why I don't understand OP's notion that converting to character did not work. OP may not be able to modify directly on the original excel file, while making a copy and then convert the variable to character seems doable to me. Besides, I don't think ODS is relevant in this context, as you still have to read it into SAS to be able to use ODS, and it is the very readingin process that knocks off the zeros.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Haikuo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Aug 2012 22:49:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Import-eliminating-zeroes-from-decimal-places/m-p/85959#M18448</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2012-08-06T22:49:31Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Import eliminating zeroes from decimal places</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Import-eliminating-zeroes-from-decimal-places/m-p/85960#M18449</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;@Art: If you mean something as shown below: If my excel has three records like this :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,xxx(extra record)&lt;/P&gt;&lt;P&gt;aaa, 12.20&lt;/P&gt;&lt;P&gt;bbb, 12.2&lt;/P&gt;&lt;P&gt;ccc,12.22&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This also doesnt work for me ...:(&lt;/P&gt;&lt;P&gt;This is the code m using &lt;/P&gt;&lt;P&gt;PROC IMPORT OUT= tfl&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DATAFILE= "./docs/tnf.xls" DBMS=XLS REPLACE;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sheet="tfl";&amp;nbsp; GETNAMES=YES;&amp;nbsp; MIXED=YES;&lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Aug 2012 22:51:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Import-eliminating-zeroes-from-decimal-places/m-p/85960#M18449</guid>
      <dc:creator>maggi2410</dc:creator>
      <dc:date>2012-08-06T22:51:03Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Import eliminating zeroes from decimal places</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Import-eliminating-zeroes-from-decimal-places/m-p/85961#M18450</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;@Haikuo: Not converting into character but, rather, importing as character in the first place.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Aug 2012 22:53:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Import-eliminating-zeroes-from-decimal-places/m-p/85961#M18450</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-08-06T22:53:07Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Import eliminating zeroes from decimal places</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Import-eliminating-zeroes-from-decimal-places/m-p/85962#M18451</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;xxx,xxx&lt;/P&gt;&lt;P&gt;aaa, 12.20&lt;/P&gt;&lt;P&gt;bbb, 12.2&lt;/P&gt;&lt;P&gt;ccc,12.22&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Haikuo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Aug 2012 22:54:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Import-eliminating-zeroes-from-decimal-places/m-p/85962#M18451</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2012-08-06T22:54:47Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Import eliminating zeroes from decimal places</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Import-eliminating-zeroes-from-decimal-places/m-p/85963#M18452</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Right, I took something for granted, again. Converting to character will take off the trailing zeros. Thanks for correcting me, Art.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Haikuo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Aug 2012 22:57:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Import-eliminating-zeroes-from-decimal-places/m-p/85963#M18452</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2012-08-06T22:57:31Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Import eliminating zeroes from decimal places</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Import-eliminating-zeroes-from-decimal-places/m-p/85964#M18453</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I dont know why..but it still isnt working..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Aug 2012 23:00:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Import-eliminating-zeroes-from-decimal-places/m-p/85964#M18453</guid>
      <dc:creator>maggi2410</dc:creator>
      <dc:date>2012-08-06T23:00:30Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Import eliminating zeroes from decimal places</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Import-eliminating-zeroes-from-decimal-places/m-p/85965#M18454</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Getnames=NO?&amp;nbsp; if using YES, then the first record will be variable names, then the mixed option will not work, as the rest of data are numeric. Or add another row of xxx,xxx .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Haikuo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Aug 2012 23:10:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Import-eliminating-zeroes-from-decimal-places/m-p/85965#M18454</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2012-08-06T23:10:25Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Import eliminating zeroes from decimal places</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Import-eliminating-zeroes-from-decimal-places/m-p/85966#M18455</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My excel already has a row for the column names. thats why i used yes.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Aug 2012 23:15:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Import-eliminating-zeroes-from-decimal-places/m-p/85966#M18455</guid>
      <dc:creator>maggi2410</dc:creator>
      <dc:date>2012-08-06T23:15:13Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Import eliminating zeroes from decimal places</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Proc-Import-eliminating-zeroes-from-decimal-places/m-p/85967#M18456</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You got me. As long as data type is mixed in the same column in the first couple of rows, and 'mixed=yes', proc import is supposed to import whatever as is in character format. It works for me on SAS 9.2, Excel 2003, winxp sp4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Haikuo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Aug 2012 23:24:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Proc-Import-eliminating-zeroes-from-decimal-places/m-p/85967#M18456</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2012-08-06T23:24:54Z</dc:date>
    </item>
  </channel>
</rss>

