<?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: where is my code of importing cvs file into SAS wrong in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/where-is-my-code-of-importing-cvs-file-into-SAS-wrong/m-p/245932#M45955</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/70020"&gt;@dayuan&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Hi Ballardw,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you so much for the reminder. &amp;nbsp;I took your advice and have changed the relevant code into&lt;/P&gt;
&lt;P&gt;"&lt;SPAN&gt;call symput('name'|| put(_n_,3.), company name)&lt;/SPAN&gt;"&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/70020"&gt;@dayuan&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I assume you haven't run the above code yet, because it wouldn't work for _n_&amp;lt;100&amp;nbsp;due to the right-alignment of these values when formatted with the 3. format. (It wouldn't work for _n_&amp;gt;=100 either because of the invalid variable name "company name", as others have mentioned earlier.) To correct this specific line of code, I would suggest:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;call symputx(cats('name', _n_), company_name);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;(incorporating &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;'s suggestion of using CALL SYMPUT&lt;STRONG&gt;X&lt;/STRONG&gt;).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The CATS function&amp;nbsp;avoids any blanks between "name" and the numeric suffix. It doesn't cause notes about numeric-to-character conversion in the log. Moreover, this code would work even if _n_ exceeded 999.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 25 Jan 2016 18:12:04 GMT</pubDate>
    <dc:creator>FreelanceReinh</dc:creator>
    <dc:date>2016-01-25T18:12:04Z</dc:date>
    <item>
      <title>where is my code of importing cvs file into SAS wrong</title>
      <link>https://communities.sas.com/t5/SAS-Programming/where-is-my-code-of-importing-cvs-file-into-SAS-wrong/m-p/245807#M45899</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I need to import hundreds of cvs. files with title of specific company names into sas. I currently have a complete company name list and try to write a macro code to import a cvs file with the&amp;nbsp;relevant company name into sas every time. For example, my first company obs. in my list is "IBM", so I need to proc import a relevant cvs. file also named with "IBM". Currently, my code is as follows:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;%macro m1(name=);&amp;nbsp;&lt;BR /&gt;proc import datafile='D:\DATA\company\&amp;amp;name.csv' out=&amp;amp;name dbms=csv replace;run;&lt;BR /&gt;%mend m1;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;data _null_;&lt;BR /&gt;set company_name_list;&lt;BR /&gt;call symput('name'|| put(_n_,1.), company name);&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;%macro m2;&lt;BR /&gt;%local j;&lt;BR /&gt;%do j = 1 %to 500;&lt;BR /&gt;%m1(name=&amp;amp;&amp;amp;name&amp;amp;j);&lt;BR /&gt;&lt;BR /&gt;%end;&lt;BR /&gt;%mend m2;&lt;BR /&gt;%m2;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, the log page suggests that:&lt;/P&gt;&lt;P&gt;ERROR: Physical file does not exist, D:\DATA\&lt;SPAN&gt;company\&amp;amp;name&lt;/SPAN&gt;.csv.&lt;BR /&gt;ERROR: Import unsuccessful. See SAS Log for details.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So I would really appreicate it if any one could help me out.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jan 2016 04:07:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/where-is-my-code-of-importing-cvs-file-into-SAS-wrong/m-p/245807#M45899</guid>
      <dc:creator>dayuan</dc:creator>
      <dc:date>2016-01-25T04:07:24Z</dc:date>
    </item>
    <item>
      <title>Re: where is my code of importing cvs file into SAS wrong</title>
      <link>https://communities.sas.com/t5/SAS-Programming/where-is-my-code-of-importing-cvs-file-into-SAS-wrong/m-p/245809#M45900</link>
      <description>&lt;P&gt;Try a simpler approach:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
length line $256;
set company_name_list;
line = catt(
    "proc import datafile='D:\DATA\company\", 
    company_name,
    ".csv' out=",
    compress(company_name),
    " dbms=csv replace; run;");
call execute(line);
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;(untested)&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jan 2016 04:30:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/where-is-my-code-of-importing-cvs-file-into-SAS-wrong/m-p/245809#M45900</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2016-01-25T04:30:16Z</dc:date>
    </item>
    <item>
      <title>Re: where is my code of importing cvs file into SAS wrong</title>
      <link>https://communities.sas.com/t5/SAS-Programming/where-is-my-code-of-importing-cvs-file-into-SAS-wrong/m-p/245810#M45901</link>
      <description>&lt;P&gt;The problem with your code is likely some extra spaces in your macro variable, as well as your data step to create macro variables is incorrect.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. Change to call symputX to remove trailing spaces.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2. Change variable to company_name, since company name would likely generate an error as it's not a valid SAS name.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
set company_name_list;
call symputx('name'|| put(_n_,1.), company_name);
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;3. Check what your macro variable is resolving to, it may not be what you expect.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%put Original - &amp;amp;&amp;amp;name&amp;amp;j;

%put Modified - &amp;amp;&amp;amp;&amp;amp;name&amp;amp;j;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;And last but not least, if the files have the same structure and are in the same folder you can consider another&amp;nbsp;option:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;4. Use a wildcard and a data step to read all the files at once into a single SAS data set with a variable to identify the source dataset.&lt;/P&gt;
&lt;P&gt;Here's a bit of a write up I wrote on avoiding a macro to accomplish this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data import_all;

*make sure variables to store file name are long enough;
length filename txt_file_name $256;

*keep file name from record to record;
retain txt_file_name;

*Use wildcard in input;
infile "Path\*.txt" eov=eov filename=filename truncover;

*Input first record and hold line;
input@;

*Check if this is the first record or the first record in a new file;
*If it is, replace the filename with the new file name and move to next line;
if _n_ eq 1 or eov then do;
 txt_file_name = scan(filename, -1, "\");
 eov=0;
end;

*Otherwise  go to the import step and read the files;
else input

 *Place input code here;

;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jan 2016 05:14:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/where-is-my-code-of-importing-cvs-file-into-SAS-wrong/m-p/245810#M45901</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-01-25T05:14:51Z</dc:date>
    </item>
    <item>
      <title>Re: where is my code of importing cvs file into SAS wrong</title>
      <link>https://communities.sas.com/t5/SAS-Programming/where-is-my-code-of-importing-cvs-file-into-SAS-wrong/m-p/245814#M45904</link>
      <description>&lt;P&gt;First of all:&lt;/P&gt;
&lt;P&gt;DO NOT USE BLANKS IN FILENAMES!&lt;/P&gt;
&lt;P&gt;Print the above in at least 48 points and stick it on top of your computer monitor. Also supply your workmates with this important rule.&lt;/P&gt;
&lt;P&gt;Although it is possible to use blanks, they only cause you grief along the way, repeatedly. Use underlines where a visual separator is needed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As soon as you have blanks in filenames, you cannot use the same name for SAS datasets, as valid SAS names need to consist of characters, numbers and the underline character only.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When using a macro variable within a string (like you did with &amp;amp;name.csv), you need to delimit the macro variable reference with a dot. If you need a dot to be inserted, then you have to write two dots.&lt;/P&gt;
&lt;P&gt;If &amp;amp;name is xxx, then &amp;amp;name.csv will resolve to xxxcsv; &amp;amp;name..csv will resolve to xxx.csv.&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jan 2016 09:30:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/where-is-my-code-of-importing-cvs-file-into-SAS-wrong/m-p/245814#M45904</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2016-01-25T09:30:53Z</dc:date>
    </item>
    <item>
      <title>Re: where is my code of importing cvs file into SAS wrong</title>
      <link>https://communities.sas.com/t5/SAS-Programming/where-is-my-code-of-importing-cvs-file-into-SAS-wrong/m-p/245871#M45925</link>
      <description>&lt;P&gt;Another mistake was, that macro variable reference &lt;FONT face="courier new,courier"&gt;&amp;amp;name&lt;/FONT&gt; is not resolved inside of single quotes (see first error message). You should have used double quotes around the path. The first error message would then have complained about a non-existing file such as IBMcsv, thus making you aware of the missing second&amp;nbsp;dot&amp;nbsp;in "&amp;amp;name.csv"&amp;nbsp;(see &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser﻿&lt;/a&gt;'s post).&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jan 2016 13:23:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/where-is-my-code-of-importing-cvs-file-into-SAS-wrong/m-p/245871#M45925</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2016-01-25T13:23:48Z</dc:date>
    </item>
    <item>
      <title>Re: where is my code of importing cvs file into SAS wrong</title>
      <link>https://communities.sas.com/t5/SAS-Programming/where-is-my-code-of-importing-cvs-file-into-SAS-wrong/m-p/245900#M45942</link>
      <description>Wouldn't the simplest be to do call execute instead of going the extra logic of having an array style macro variable and separate macro call...?</description>
      <pubDate>Mon, 25 Jan 2016 17:04:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/where-is-my-code-of-importing-cvs-file-into-SAS-wrong/m-p/245900#M45942</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2016-01-25T17:04:21Z</dc:date>
    </item>
    <item>
      <title>Re: where is my code of importing cvs file into SAS wrong</title>
      <link>https://communities.sas.com/t5/SAS-Programming/where-is-my-code-of-importing-cvs-file-into-SAS-wrong/m-p/245910#M45944</link>
      <description>&lt;P&gt;You also don't allow enough macro variable names to begin with"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;call symput('name'|| put(_n_,1.), company name); &amp;lt;= This line limits you to variables Name1 , Name2 ... Name9 and then start generating Name* as putting _n_ &amp;gt; 9 with a 1 space format just doesn't fit.&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;%macro m2;&lt;BR /&gt;%local j;&lt;BR /&gt;%do j = 1 %to 500;&amp;nbsp; &lt;BR /&gt;%m1(name=&amp;amp;&amp;amp;name&amp;amp;j); &amp;lt;= and&amp;nbsp;here you use way more values of Name then set above PLUS assuming&amp;nbsp;the there exactly 500 names to use.&amp;nbsp; &lt;/P&gt;</description>
      <pubDate>Mon, 25 Jan 2016 17:31:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/where-is-my-code-of-importing-cvs-file-into-SAS-wrong/m-p/245910#M45944</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2016-01-25T17:31:54Z</dc:date>
    </item>
    <item>
      <title>Re: where is my code of importing cvs file into SAS wrong</title>
      <link>https://communities.sas.com/t5/SAS-Programming/where-is-my-code-of-importing-cvs-file-into-SAS-wrong/m-p/245915#M45946</link>
      <description>&lt;P&gt;Hi Ballardw,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you so much for the reminder. &amp;nbsp;I took your advice and have changed the relevant code into&lt;/P&gt;&lt;P&gt;"&lt;SPAN&gt;call symput('name'|| put(_n_,3.), company name)&lt;/SPAN&gt;"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jan 2016 17:42:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/where-is-my-code-of-importing-cvs-file-into-SAS-wrong/m-p/245915#M45946</guid>
      <dc:creator>dayuan</dc:creator>
      <dc:date>2016-01-25T17:42:42Z</dc:date>
    </item>
    <item>
      <title>Re: where is my code of importing cvs file into SAS wrong</title>
      <link>https://communities.sas.com/t5/SAS-Programming/where-is-my-code-of-importing-cvs-file-into-SAS-wrong/m-p/245917#M45947</link>
      <description>&lt;P&gt;Hi Reinhard&lt;SPAN class="login-bold"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="login-bold"&gt;Thank you so much for your reply. the code now works!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jan 2016 17:44:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/where-is-my-code-of-importing-cvs-file-into-SAS-wrong/m-p/245917#M45947</guid>
      <dc:creator>dayuan</dc:creator>
      <dc:date>2016-01-25T17:44:16Z</dc:date>
    </item>
    <item>
      <title>Re: where is my code of importing cvs file into SAS wrong</title>
      <link>https://communities.sas.com/t5/SAS-Programming/where-is-my-code-of-importing-cvs-file-into-SAS-wrong/m-p/245918#M45948</link>
      <description>&lt;P&gt;Hi PG,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would say "call execute(line)" is really powerful!&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jan 2016 17:45:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/where-is-my-code-of-importing-cvs-file-into-SAS-wrong/m-p/245918#M45948</guid>
      <dc:creator>dayuan</dc:creator>
      <dc:date>2016-01-25T17:45:54Z</dc:date>
    </item>
    <item>
      <title>Re: where is my code of importing cvs file into SAS wrong</title>
      <link>https://communities.sas.com/t5/SAS-Programming/where-is-my-code-of-importing-cvs-file-into-SAS-wrong/m-p/245920#M45950</link>
      <description>&lt;P&gt;HI LinusH,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I thank your reply. As the first reply by PG suggests, call execute is definitely powerful and saves time. but I need to change the each file firstly after importing it and then combine them into a final dataset. I can figure them out using macro, but I might try to find out how to realize it with call execute. anyway, I appreciate your reply!&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jan 2016 17:49:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/where-is-my-code-of-importing-cvs-file-into-SAS-wrong/m-p/245920#M45950</guid>
      <dc:creator>dayuan</dc:creator>
      <dc:date>2016-01-25T17:49:31Z</dc:date>
    </item>
    <item>
      <title>Re: where is my code of importing cvs file into SAS wrong</title>
      <link>https://communities.sas.com/t5/SAS-Programming/where-is-my-code-of-importing-cvs-file-into-SAS-wrong/m-p/245932#M45955</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/70020"&gt;@dayuan&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Hi Ballardw,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you so much for the reminder. &amp;nbsp;I took your advice and have changed the relevant code into&lt;/P&gt;
&lt;P&gt;"&lt;SPAN&gt;call symput('name'|| put(_n_,3.), company name)&lt;/SPAN&gt;"&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/70020"&gt;@dayuan&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I assume you haven't run the above code yet, because it wouldn't work for _n_&amp;lt;100&amp;nbsp;due to the right-alignment of these values when formatted with the 3. format. (It wouldn't work for _n_&amp;gt;=100 either because of the invalid variable name "company name", as others have mentioned earlier.) To correct this specific line of code, I would suggest:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;call symputx(cats('name', _n_), company_name);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;(incorporating &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;'s suggestion of using CALL SYMPUT&lt;STRONG&gt;X&lt;/STRONG&gt;).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The CATS function&amp;nbsp;avoids any blanks between "name" and the numeric suffix. It doesn't cause notes about numeric-to-character conversion in the log. Moreover, this code would work even if _n_ exceeded 999.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jan 2016 18:12:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/where-is-my-code-of-importing-cvs-file-into-SAS-wrong/m-p/245932#M45955</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2016-01-25T18:12:04Z</dc:date>
    </item>
    <item>
      <title>Re: where is my code of importing cvs file into SAS wrong</title>
      <link>https://communities.sas.com/t5/SAS-Programming/where-is-my-code-of-importing-cvs-file-into-SAS-wrong/m-p/246047#M45990</link>
      <description>You can call a macro using call execute, and thus avoiding the separate macro variable definition.</description>
      <pubDate>Tue, 26 Jan 2016 05:36:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/where-is-my-code-of-importing-cvs-file-into-SAS-wrong/m-p/246047#M45990</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2016-01-26T05:36:32Z</dc:date>
    </item>
    <item>
      <title>Re: where is my code of importing cvs file into SAS wrong</title>
      <link>https://communities.sas.com/t5/SAS-Programming/where-is-my-code-of-importing-cvs-file-into-SAS-wrong/m-p/249882#M47068</link>
      <description>&lt;P&gt;Hi PG,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using your code and call execute is very efficient, but the thing is when there is a single quotation mark in company name, the code fails. I try to fix the code by replacing the single quotation marks after "datafile" with double quotation marks, but it does not work. I would really appreciate it if you could give me a help.&lt;/P&gt;</description>
      <pubDate>Sat, 13 Feb 2016 17:51:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/where-is-my-code-of-importing-cvs-file-into-SAS-wrong/m-p/249882#M47068</guid>
      <dc:creator>dayuan</dc:creator>
      <dc:date>2016-02-13T17:51:44Z</dc:date>
    </item>
    <item>
      <title>Re: where is my code of importing cvs file into SAS wrong</title>
      <link>https://communities.sas.com/t5/SAS-Programming/where-is-my-code-of-importing-cvs-file-into-SAS-wrong/m-p/249884#M47069</link>
      <description>&lt;P&gt;The file also has the quotation marks?&lt;/P&gt;</description>
      <pubDate>Sat, 13 Feb 2016 18:11:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/where-is-my-code-of-importing-cvs-file-into-SAS-wrong/m-p/249884#M47069</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-02-13T18:11:37Z</dc:date>
    </item>
    <item>
      <title>Re: where is my code of importing cvs file into SAS wrong</title>
      <link>https://communities.sas.com/t5/SAS-Programming/where-is-my-code-of-importing-cvs-file-into-SAS-wrong/m-p/249885#M47070</link>
      <description>&lt;P&gt;Hi PG,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your quick response. Yes, the file also has single quotation marks.&lt;/P&gt;</description>
      <pubDate>Sat, 13 Feb 2016 18:47:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/where-is-my-code-of-importing-cvs-file-into-SAS-wrong/m-p/249885#M47070</guid>
      <dc:creator>dayuan</dc:creator>
      <dc:date>2016-02-13T18:47:07Z</dc:date>
    </item>
  </channel>
</rss>

