<?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: load csv file with numeric comma in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/load-csv-file-with-numeric-comma/m-p/632747#M187614</link>
    <description>It looks like your delimiter is actually a semicolon so as long you specify the correct delimiter it should work. Can you post the code you used and we can show you what needs to be changed?</description>
    <pubDate>Tue, 17 Mar 2020 17:44:44 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2020-03-17T17:44:44Z</dc:date>
    <item>
      <title>load csv file with numeric comma</title>
      <link>https://communities.sas.com/t5/SAS-Programming/load-csv-file-with-numeric-comma/m-p/632742#M187609</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;this is what i have in en external csv file. sometimes 2 decimal, 1 or 0&lt;/P&gt;&lt;P&gt;reference;amount&amp;nbsp;&amp;nbsp;&lt;BR /&gt;101;190000,12&lt;BR /&gt;102;190000,1&lt;BR /&gt;103;190000&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I don't succeed to load in a table.&lt;/P&gt;&lt;P&gt;thnaks in advance for your help&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Nasser&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2020 17:37:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/load-csv-file-with-numeric-comma/m-p/632742#M187609</guid>
      <dc:creator>Nasser_DRMCP</dc:creator>
      <dc:date>2020-03-17T17:37:35Z</dc:date>
    </item>
    <item>
      <title>Re: load csv file with numeric comma</title>
      <link>https://communities.sas.com/t5/SAS-Programming/load-csv-file-with-numeric-comma/m-p/632743#M187610</link>
      <description>&lt;P&gt;How did you not succeed? What went wrong?&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2020 17:38:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/load-csv-file-with-numeric-comma/m-p/632743#M187610</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2020-03-17T17:38:42Z</dc:date>
    </item>
    <item>
      <title>Re: load csv file with numeric comma</title>
      <link>https://communities.sas.com/t5/SAS-Programming/load-csv-file-with-numeric-comma/m-p/632746#M187613</link>
      <description>&lt;P&gt;Should work find, if you use the right INFORMAT.&lt;/P&gt;
&lt;P&gt;Example:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
  infile cards dsd dlm=';' truncover ;
  input id $ value :commax. ;
cards4;
101;190000,12
102;190000,1
103;190000
;;;;

proc print;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;PRE&gt;Obs    id       value

 1     101    190000.12
 2     102    190000.10
 3     103    190000.00

&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2020 17:42:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/load-csv-file-with-numeric-comma/m-p/632746#M187613</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2020-03-17T17:42:44Z</dc:date>
    </item>
    <item>
      <title>Re: load csv file with numeric comma</title>
      <link>https://communities.sas.com/t5/SAS-Programming/load-csv-file-with-numeric-comma/m-p/632747#M187614</link>
      <description>It looks like your delimiter is actually a semicolon so as long you specify the correct delimiter it should work. Can you post the code you used and we can show you what needs to be changed?</description>
      <pubDate>Tue, 17 Mar 2020 17:44:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/load-csv-file-with-numeric-comma/m-p/632747#M187614</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-03-17T17:44:44Z</dc:date>
    </item>
  </channel>
</rss>

