<?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 Issue with Data step import in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Issue-with-Data-step-import/m-p/429018#M105954</link>
    <description>&lt;P&gt;I'm trying to import the attached .csv file with the following code. It has 1 record but I end up with 39 records. Appreciate if someone guide me resolve this issue. Enclosed the code and the log for the quick reference.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;DATA example2;
	LENGTH
		externalIdentifier $ 10
		dateRenewal      $ 10
		Veh_Driver_hashcode $ 23
		Version_subversion_hashcode $ 4
		Clause_Base      $ 4
		Clause_Major_change $ 4
		Clause_Minor_change $ 4
		Cover            $ 20
		DPF_base         $ 6
		Expl_base        $ 20
		DPF_major_change $ 6
		Expl_major_change $ 17
		DPF_minor_change $ 6
		Expl_minor_change $ 25;
	FORMAT
		externalIdentifier $CHAR10.
		dateRenewal      $CHAR10.
		Veh_Driver_hashcode $CHAR23.
		Version_subversion_hashcode $CHAR4.
		Clause_Base      $CHAR4.
		Clause_Major_change $CHAR4.
		Clause_Minor_change $CHAR4.
		Cover            $CHAR20.
		DPF_base         $CHAR6.
		Expl_base        $CHAR20.
		DPF_major_change $CHAR6.
		Expl_major_change $CHAR17.
		DPF_minor_change $CHAR6.
		Expl_minor_change $CHAR25.;
	INFORMAT
		externalIdentifier $CHAR10.
		dateRenewal      $CHAR10.
		Veh_Driver_hashcode $CHAR23.
		Version_subversion_hashcode $CHAR4.
		Clause_Base      $CHAR4.
		Clause_Major_change $CHAR4.
		Clause_Minor_change $CHAR4.
		Cover            $CHAR20.
		DPF_base         $CHAR6.
		Expl_base        $CHAR20.
		DPF_major_change $CHAR6.
		Expl_major_change $CHAR17.
		DPF_minor_change $CHAR6.
		Expl_minor_change $CHAR25.;
	INFILE '/wrk1/example2.csv'
		/*        LRECL=162*/

	/*        ENCODING="LATIN1"*/
	/*        TERMSTR=CRLF*/
	DLM=','
	/*        MISSOVER*/
	truncover
	DSD;
	INPUT
		externalIdentifier : $CHAR10.
		dateRenewal      : $CHAR10.
		Veh_Driver_hashcode : $CHAR23.
		Version_subversion_hashcode : $CHAR4.
		Clause_Base      : $CHAR4.
		Clause_Major_change : $CHAR4.
		Clause_Minor_change : $CHAR4.
		Cover            : $CHAR20.
		DPF_base         : $CHAR6.
		Expl_base        : $CHAR20.
		DPF_major_change : $CHAR6.
		Expl_major_change : $CHAR17.
		DPF_minor_change : $CHAR6.
		Expl_minor_change : $CHAR25.;
RUN;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Log:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;24         DATA example2;
25         	LENGTH
26         		externalIdentifier $ 10
27         		dateRenewal      $ 10
28         		Veh_Driver_hashcode $ 23
29         		Version_subversion_hashcode $ 4
30         		Clause_Base      $ 4
31         		Clause_Major_change $ 4
32         		Clause_Minor_change $ 4
33         		Cover            $ 20
34         		DPF_base         $ 6
35         		Expl_base        $ 20
36         		DPF_major_change $ 6
37         		Expl_major_change $ 17
38         		DPF_minor_change $ 6
39         		Expl_minor_change $ 25;
40         	FORMAT
41         		externalIdentifier $CHAR10.
42         		dateRenewal      $CHAR10.
43         		Veh_Driver_hashcode $CHAR23.
44         		Version_subversion_hashcode $CHAR4.
45         		Clause_Base      $CHAR4.
46         		Clause_Major_change $CHAR4.
47         		Clause_Minor_change $CHAR4.
48         		Cover            $CHAR20.
49         		DPF_base         $CHAR6.
50         		Expl_base        $CHAR20.
51         		DPF_major_change $CHAR6.
52         		Expl_major_change $CHAR17.
53         		DPF_minor_change $CHAR6.
54         		Expl_minor_change $CHAR25.;
55         	INFORMAT
56         		externalIdentifier $CHAR10.
57         		dateRenewal      $CHAR10.
58         		Veh_Driver_hashcode $CHAR23.
59         		Version_subversion_hashcode $CHAR4.
60         		Clause_Base      $CHAR4.
61         		Clause_Major_change $CHAR4.
62         		Clause_Minor_change $CHAR4.
63         		Cover            $CHAR20.
64         		DPF_base         $CHAR6.
65         		Expl_base        $CHAR20.
66         		DPF_major_change $CHAR6.
67         		Expl_major_change $CHAR17.
68         		DPF_minor_change $CHAR6.
69         		Expl_minor_change $CHAR25.;
70         	INFILE '/wrk1/example2.csv'
71         		/*        LRECL=162*/
72         
73         	/*        ENCODING="LATIN1"*/
74         	/*        TERMSTR=CRLF*/
75         	DLM=','
76         	/*        MISSOVER*/
77         	truncover
78         	DSD;
79         	INPUT
80         		externalIdentifier : $CHAR10.
81         		dateRenewal      : $CHAR10.
82         		Veh_Driver_hashcode : $CHAR23.
83         		Version_subversion_hashcode : $CHAR4.
84         		Clause_Base      : $CHAR4.
85         		Clause_Major_change : $CHAR4.
86         		Clause_Minor_change : $CHAR4.
87         		Cover            : $CHAR20.
88         		DPF_base         : $CHAR6.
89         		Expl_base        : $CHAR20.
90         		DPF_major_change : $CHAR6.
91         		Expl_major_change : $CHAR17.
92         		DPF_minor_change : $CHAR6.
93         		Expl_minor_change : $CHAR25.;
94         RUN;

NOTE: The infile '/wrk1/example2.csv' is:
      Filename=/wrk1/example2.csv,
NOTE: 39 records were read from the infile '/wrk1/example2.csv'.
      The minimum record length was 9.
      The maximum record length was 256.
      One or more lines were truncated.
NOTE: The data set WORK.example2 has 39 observations and 14 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      

95         

&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 19 Jan 2018 07:29:59 GMT</pubDate>
    <dc:creator>Babloo</dc:creator>
    <dc:date>2018-01-19T07:29:59Z</dc:date>
    <item>
      <title>Issue with Data step import</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Issue-with-Data-step-import/m-p/429018#M105954</link>
      <description>&lt;P&gt;I'm trying to import the attached .csv file with the following code. It has 1 record but I end up with 39 records. Appreciate if someone guide me resolve this issue. Enclosed the code and the log for the quick reference.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;DATA example2;
	LENGTH
		externalIdentifier $ 10
		dateRenewal      $ 10
		Veh_Driver_hashcode $ 23
		Version_subversion_hashcode $ 4
		Clause_Base      $ 4
		Clause_Major_change $ 4
		Clause_Minor_change $ 4
		Cover            $ 20
		DPF_base         $ 6
		Expl_base        $ 20
		DPF_major_change $ 6
		Expl_major_change $ 17
		DPF_minor_change $ 6
		Expl_minor_change $ 25;
	FORMAT
		externalIdentifier $CHAR10.
		dateRenewal      $CHAR10.
		Veh_Driver_hashcode $CHAR23.
		Version_subversion_hashcode $CHAR4.
		Clause_Base      $CHAR4.
		Clause_Major_change $CHAR4.
		Clause_Minor_change $CHAR4.
		Cover            $CHAR20.
		DPF_base         $CHAR6.
		Expl_base        $CHAR20.
		DPF_major_change $CHAR6.
		Expl_major_change $CHAR17.
		DPF_minor_change $CHAR6.
		Expl_minor_change $CHAR25.;
	INFORMAT
		externalIdentifier $CHAR10.
		dateRenewal      $CHAR10.
		Veh_Driver_hashcode $CHAR23.
		Version_subversion_hashcode $CHAR4.
		Clause_Base      $CHAR4.
		Clause_Major_change $CHAR4.
		Clause_Minor_change $CHAR4.
		Cover            $CHAR20.
		DPF_base         $CHAR6.
		Expl_base        $CHAR20.
		DPF_major_change $CHAR6.
		Expl_major_change $CHAR17.
		DPF_minor_change $CHAR6.
		Expl_minor_change $CHAR25.;
	INFILE '/wrk1/example2.csv'
		/*        LRECL=162*/

	/*        ENCODING="LATIN1"*/
	/*        TERMSTR=CRLF*/
	DLM=','
	/*        MISSOVER*/
	truncover
	DSD;
	INPUT
		externalIdentifier : $CHAR10.
		dateRenewal      : $CHAR10.
		Veh_Driver_hashcode : $CHAR23.
		Version_subversion_hashcode : $CHAR4.
		Clause_Base      : $CHAR4.
		Clause_Major_change : $CHAR4.
		Clause_Minor_change : $CHAR4.
		Cover            : $CHAR20.
		DPF_base         : $CHAR6.
		Expl_base        : $CHAR20.
		DPF_major_change : $CHAR6.
		Expl_major_change : $CHAR17.
		DPF_minor_change : $CHAR6.
		Expl_minor_change : $CHAR25.;
RUN;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Log:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;24         DATA example2;
25         	LENGTH
26         		externalIdentifier $ 10
27         		dateRenewal      $ 10
28         		Veh_Driver_hashcode $ 23
29         		Version_subversion_hashcode $ 4
30         		Clause_Base      $ 4
31         		Clause_Major_change $ 4
32         		Clause_Minor_change $ 4
33         		Cover            $ 20
34         		DPF_base         $ 6
35         		Expl_base        $ 20
36         		DPF_major_change $ 6
37         		Expl_major_change $ 17
38         		DPF_minor_change $ 6
39         		Expl_minor_change $ 25;
40         	FORMAT
41         		externalIdentifier $CHAR10.
42         		dateRenewal      $CHAR10.
43         		Veh_Driver_hashcode $CHAR23.
44         		Version_subversion_hashcode $CHAR4.
45         		Clause_Base      $CHAR4.
46         		Clause_Major_change $CHAR4.
47         		Clause_Minor_change $CHAR4.
48         		Cover            $CHAR20.
49         		DPF_base         $CHAR6.
50         		Expl_base        $CHAR20.
51         		DPF_major_change $CHAR6.
52         		Expl_major_change $CHAR17.
53         		DPF_minor_change $CHAR6.
54         		Expl_minor_change $CHAR25.;
55         	INFORMAT
56         		externalIdentifier $CHAR10.
57         		dateRenewal      $CHAR10.
58         		Veh_Driver_hashcode $CHAR23.
59         		Version_subversion_hashcode $CHAR4.
60         		Clause_Base      $CHAR4.
61         		Clause_Major_change $CHAR4.
62         		Clause_Minor_change $CHAR4.
63         		Cover            $CHAR20.
64         		DPF_base         $CHAR6.
65         		Expl_base        $CHAR20.
66         		DPF_major_change $CHAR6.
67         		Expl_major_change $CHAR17.
68         		DPF_minor_change $CHAR6.
69         		Expl_minor_change $CHAR25.;
70         	INFILE '/wrk1/example2.csv'
71         		/*        LRECL=162*/
72         
73         	/*        ENCODING="LATIN1"*/
74         	/*        TERMSTR=CRLF*/
75         	DLM=','
76         	/*        MISSOVER*/
77         	truncover
78         	DSD;
79         	INPUT
80         		externalIdentifier : $CHAR10.
81         		dateRenewal      : $CHAR10.
82         		Veh_Driver_hashcode : $CHAR23.
83         		Version_subversion_hashcode : $CHAR4.
84         		Clause_Base      : $CHAR4.
85         		Clause_Major_change : $CHAR4.
86         		Clause_Minor_change : $CHAR4.
87         		Cover            : $CHAR20.
88         		DPF_base         : $CHAR6.
89         		Expl_base        : $CHAR20.
90         		DPF_major_change : $CHAR6.
91         		Expl_major_change : $CHAR17.
92         		DPF_minor_change : $CHAR6.
93         		Expl_minor_change : $CHAR25.;
94         RUN;

NOTE: The infile '/wrk1/example2.csv' is:
      Filename=/wrk1/example2.csv,
NOTE: 39 records were read from the infile '/wrk1/example2.csv'.
      The minimum record length was 9.
      The maximum record length was 256.
      One or more lines were truncated.
NOTE: The data set WORK.example2 has 39 observations and 14 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      

95         

&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jan 2018 07:29:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Issue-with-Data-step-import/m-p/429018#M105954</guid>
      <dc:creator>Babloo</dc:creator>
      <dc:date>2018-01-19T07:29:59Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with Data step import</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Issue-with-Data-step-import/m-p/429019#M105955</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You better write proc import data file="path/filename.csv"&lt;/P&gt;&lt;P&gt;out=libname.filename&lt;/P&gt;&lt;P&gt;dbms=csv&lt;/P&gt;&lt;P&gt;replace;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jan 2018 07:19:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Issue-with-Data-step-import/m-p/429019#M105955</guid>
      <dc:creator>srinath3111</dc:creator>
      <dc:date>2018-01-19T07:19:37Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with Data step import</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Issue-with-Data-step-import/m-p/429020#M105956</link>
      <description>and one more i wanted to notice you that sas statements read line by line. if the data you are reading is not in a proper format, you have to first write informat statement then write format statement</description>
      <pubDate>Fri, 19 Jan 2018 07:24:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Issue-with-Data-step-import/m-p/429020#M105956</guid>
      <dc:creator>srinath3111</dc:creator>
      <dc:date>2018-01-19T07:24:23Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with Data step import</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Issue-with-Data-step-import/m-p/429022#M105957</link>
      <description>&lt;P&gt;I need to write the code in data step. Also swapping the informat and format statements has not resolved my issue either.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jan 2018 07:27:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Issue-with-Data-step-import/m-p/429022#M105957</guid>
      <dc:creator>Babloo</dc:creator>
      <dc:date>2018-01-19T07:27:32Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with Data step import</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Issue-with-Data-step-import/m-p/429033#M105959</link>
      <description>I need to write only the data step.&lt;BR /&gt;</description>
      <pubDate>Fri, 19 Jan 2018 07:50:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Issue-with-Data-step-import/m-p/429033#M105959</guid>
      <dc:creator>Babloo</dc:creator>
      <dc:date>2018-01-19T07:50:35Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with Data step import</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Issue-with-Data-step-import/m-p/429097#M105969</link>
      <description>&lt;P&gt;That is not a csv file at all, see this hex dump:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="example2.jpg"&gt;&lt;img src="https://communities.sas.com/skins/images/2FD96521DCF95C42FE57BF2A7CB72678/responsive_peak/images/image_not_found.png" alt="example2.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jan 2018 12:47:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Issue-with-Data-step-import/m-p/429097#M105969</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-01-19T12:47:37Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with Data step import</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Issue-with-Data-step-import/m-p/429098#M105970</link>
      <description>&lt;P&gt;That is really an .xls file which had some formats.I manually converted the .xls to .csv. Is there any way to get rid of that issue?&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jan 2018 12:56:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Issue-with-Data-step-import/m-p/429098#M105970</guid>
      <dc:creator>Babloo</dc:creator>
      <dc:date>2018-01-19T12:56:01Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with Data step import</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Issue-with-Data-step-import/m-p/429100#M105971</link>
      <description>&lt;P&gt;How did you "convert" it?&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/8409"&gt;@Babloo&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;That is really an .xls file which had some formats.I manually converted the .xls to .csv. Is there any way to get rid of that issue?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jan 2018 13:05:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Issue-with-Data-step-import/m-p/429100#M105971</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-01-19T13:05:59Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with Data step import</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Issue-with-Data-step-import/m-p/429101#M105972</link>
      <description>&lt;P&gt;I just changed the extension of the file from .xlsx (it's not .xls) to csv.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jan 2018 13:07:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Issue-with-Data-step-import/m-p/429101#M105972</guid>
      <dc:creator>Babloo</dc:creator>
      <dc:date>2018-01-19T13:07:50Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with Data step import</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Issue-with-Data-step-import/m-p/429103#M105973</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/8409"&gt;@Babloo&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;I just changed the extension of the file from .xlsx (it's not .xls) to csv.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I can't believe I just read this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;THAT DOES NOT CHANGE THE CONTENTS OF THE FILE &lt;STRONG&gt;ONE LITTLE BIT&lt;/STRONG&gt;!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Read this closely:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;- open the file in Excel&lt;/P&gt;
&lt;P&gt;- select File - Export&lt;/P&gt;
&lt;P&gt;- select Change Type, and select CSV&lt;/P&gt;
&lt;P&gt;- select Save as&lt;/P&gt;
&lt;P&gt;- select location and filename, and hit Save&lt;/P&gt;
&lt;P&gt;- confirm saving as non-Excel filetype&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jan 2018 13:14:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Issue-with-Data-step-import/m-p/429103#M105973</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-01-19T13:14:59Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with Data step import</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Issue-with-Data-step-import/m-p/429104#M105974</link>
      <description>&lt;P&gt;How can I do this &lt;EM&gt;'&lt;/EM&gt;&lt;SPAN&gt;&lt;EM&gt;confirm saving as non-Excel filetype'&lt;/EM&gt;? Based on your comments (except the last one) I've took an action to convert the .xlsx to .csv but still I'm receiving the same error.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jan 2018 13:28:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Issue-with-Data-step-import/m-p/429104#M105974</guid>
      <dc:creator>Babloo</dc:creator>
      <dc:date>2018-01-19T13:28:34Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with Data step import</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Issue-with-Data-step-import/m-p/429105#M105975</link>
      <description>&lt;P&gt;The final confirmation prompt will be issued by Excel anytime you save to a different format; it tells you that formatting etc. will be lost if you continue.&lt;/P&gt;
&lt;P&gt;A csv file is always a text file that can easily be viewed with any text editor, so check it before trying to import.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jan 2018 13:33:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Issue-with-Data-step-import/m-p/429105#M105975</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-01-19T13:33:12Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with Data step import</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Issue-with-Data-step-import/m-p/429107#M105976</link>
      <description>&lt;P&gt;I did that already, but I'm not certain why I'm receiving the same error again.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jan 2018 13:36:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Issue-with-Data-step-import/m-p/429107#M105976</guid>
      <dc:creator>Babloo</dc:creator>
      <dc:date>2018-01-19T13:36:49Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with Data step import</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Issue-with-Data-step-import/m-p/429112#M105977</link>
      <description>&lt;P&gt;Post the new csv file (I also suggest you use a different name when saving, to be sure) here, once you have confirmed it is a text file.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jan 2018 13:47:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Issue-with-Data-step-import/m-p/429112#M105977</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-01-19T13:47:20Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with Data step import</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Issue-with-Data-step-import/m-p/429160#M105983</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/8409"&gt;@Babloo&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;I did that already, but I'm not certain why I'm receiving the same error again.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Did you save the "new" csv to the same name or a new name? If a new name did you change the infile statement?&lt;/P&gt;
&lt;P&gt;If the same name did you save it to the same location as the previous not-actually-a-csv was kept?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In either of those cases the infile statement may still be pointing to the old file and not the recently created CSV.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or perhaps your infile statement has the new name misspelled from what it was actually saved as: Exmaple2 instead of Example2 for instance.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jan 2018 15:30:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Issue-with-Data-step-import/m-p/429160#M105983</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-01-19T15:30:02Z</dc:date>
    </item>
  </channel>
</rss>

