<?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: How do I properly use PROC IMPORT for a multi spaced delimited text file? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-properly-use-PROC-IMPORT-for-a-multi-spaced-delimited/m-p/625660#M184424</link>
    <description>&lt;P&gt;It looks like you have what's called a fixed width file. So each field starts at a specific location and you need to read from that location. Unfortunately you have to specify the locations or have a file that does. Usually these files come with documentation that indicates the layout.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The second example here is one method of reading in the data:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://stats.idre.ucla.edu/sas/modules/inputting-data-into-sas/" target="_blank"&gt;https://stats.idre.ucla.edu/sas/modules/inputting-data-into-sas/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You cannot use PROC IMPORT, you need to write a data step to import this data set. Are you sure it's not tab delimited? Can you attach the actual file?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/310039"&gt;@rbivens&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;My problem involves a non-tab delimited txt file that causes errors when using PROC IMPORT.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've scoured the community page and StackOverflow and can't seem to find what I need. This is for an assignment so I have to use Proc Import on this data below. (It's the BigCompanies.txt dataset if that information helps) I am also using SAS University Edition.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;1    Exxon Mobil                  United States     $433.5B   $41.1B   $331.1B   $407.4B
2    JPMorgan Chase               United States     $110.8B     $19B $2,265.8B   $170.1B
3    General Electric             United States     $147.3B   $14.2B   $717.2B   $213.7B
4    Royal Dutch Shell            Netherlands       $470.2B   $30.9B   $340.5B   $227.6B
5    ICBC                         China              $82.6B   $25.1B $2,039.1B   $237.4B
6    HSBC Holdings                United Kingdom      $102B   $16.2B   $2,550B   $164.3B
7    PetroChina                   China             $310.1B   $20.6B   $304.7B   $294.7B
8    Berkshire Hathaway           United States     $143.7B   $10.3B   $392.6B   $202.2B
9    Wells Fargo                  United States      $87.6B   $15.9B $1,313.9B   $178.7B
10   Petrobras-Petróleo Brasil    Brazil            $145.9B   $20.1B   $319.4B     $180B&lt;/PRE&gt;
&lt;P&gt;As you can see there is a large space between all of the variables. So I've tried manually inserting the proc import and using the import wizard to help.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/* Generated Code (IMPORT) */
/* Source File: BigCompanies.txt */
/* Source Path: /folders/myfolders */
/* Code generated on: 2/18/20, 12:47 PM */

%web_drop_table(WORK.Comp);


FILENAME REFFILE '/folders/myfolders/BigCompanies.txt' ENCODING='wlatin1';

PROC IMPORT DATAFILE=REFFILE
	DBMS=DLM
	OUT=WORK.Comp
	REPLACE;
	GETNAMES=NO;
	GUESSINGROWS=max;
	Delimiter='20'x;
RUN;

PROC CONTENTS DATA=WORK.Comp; RUN;

PROC PRINT DATA= Work.COMP (Obs=12);
RUN;

%web_open_table(WORK.Comp);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I'm still a beginner in SAS but I don't understand why it produces this&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If I don't have Max for guessingrows it leaves out all of the rest of the variables but it has 55 variables and most of them are blanks.&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="image.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/36222i79D517B30C880DE2/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;All of the code I have tried is a simple modification of what is above. Trying different things. If I try having it read as a Tab instead of spaces all of the information is displayed in one line.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any help would be nice. I just have a sinking feeling it's really simple.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 18 Feb 2020 18:54:38 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2020-02-18T18:54:38Z</dc:date>
    <item>
      <title>How do I properly use PROC IMPORT for a multi spaced delimited text file?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-properly-use-PROC-IMPORT-for-a-multi-spaced-delimited/m-p/625656#M184421</link>
      <description>&lt;P&gt;My problem involves a non-tab delimited txt file that causes errors when using PROC IMPORT.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've scoured the community page and StackOverflow and can't seem to find what I need. This is for an assignment so I have to use Proc Import on this data below. (It's the BigCompanies.txt dataset if that information helps) I am also using SAS University Edition.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;1    Exxon Mobil                  United States     $433.5B   $41.1B   $331.1B   $407.4B
2    JPMorgan Chase               United States     $110.8B     $19B $2,265.8B   $170.1B
3    General Electric             United States     $147.3B   $14.2B   $717.2B   $213.7B
4    Royal Dutch Shell            Netherlands       $470.2B   $30.9B   $340.5B   $227.6B
5    ICBC                         China              $82.6B   $25.1B $2,039.1B   $237.4B
6    HSBC Holdings                United Kingdom      $102B   $16.2B   $2,550B   $164.3B
7    PetroChina                   China             $310.1B   $20.6B   $304.7B   $294.7B
8    Berkshire Hathaway           United States     $143.7B   $10.3B   $392.6B   $202.2B
9    Wells Fargo                  United States      $87.6B   $15.9B $1,313.9B   $178.7B
10   Petrobras-Petróleo Brasil    Brazil            $145.9B   $20.1B   $319.4B     $180B&lt;/PRE&gt;&lt;P&gt;As you can see there is a large space between all of the variables. So I've tried manually inserting the proc import and using the import wizard to help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/* Generated Code (IMPORT) */
/* Source File: BigCompanies.txt */
/* Source Path: /folders/myfolders */
/* Code generated on: 2/18/20, 12:47 PM */

%web_drop_table(WORK.Comp);


FILENAME REFFILE '/folders/myfolders/BigCompanies.txt' ENCODING='wlatin1';

PROC IMPORT DATAFILE=REFFILE
	DBMS=DLM
	OUT=WORK.Comp
	REPLACE;
	GETNAMES=NO;
	GUESSINGROWS=max;
	Delimiter='20'x;
RUN;

PROC CONTENTS DATA=WORK.Comp; RUN;

PROC PRINT DATA= Work.COMP (Obs=12);
RUN;

%web_open_table(WORK.Comp);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I'm still a beginner in SAS but I don't understand why it produces this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I don't have Max for guessingrows it leaves out all of the rest of the variables but it has 55 variables and most of them are blanks.&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="image.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/36222i79D517B30C880DE2/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;All of the code I have tried is a simple modification of what is above. Trying different things. If I try having it read as a Tab instead of spaces all of the information is displayed in one line.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help would be nice. I just have a sinking feeling it's really simple.&lt;/P&gt;</description>
      <pubDate>Tue, 18 Feb 2020 18:41:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-properly-use-PROC-IMPORT-for-a-multi-spaced-delimited/m-p/625656#M184421</guid>
      <dc:creator>rbivens</dc:creator>
      <dc:date>2020-02-18T18:41:08Z</dc:date>
    </item>
    <item>
      <title>Re: How do I properly use PROC IMPORT for a multi spaced delimited text file?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-properly-use-PROC-IMPORT-for-a-multi-spaced-delimited/m-p/625660#M184424</link>
      <description>&lt;P&gt;It looks like you have what's called a fixed width file. So each field starts at a specific location and you need to read from that location. Unfortunately you have to specify the locations or have a file that does. Usually these files come with documentation that indicates the layout.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The second example here is one method of reading in the data:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://stats.idre.ucla.edu/sas/modules/inputting-data-into-sas/" target="_blank"&gt;https://stats.idre.ucla.edu/sas/modules/inputting-data-into-sas/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You cannot use PROC IMPORT, you need to write a data step to import this data set. Are you sure it's not tab delimited? Can you attach the actual file?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/310039"&gt;@rbivens&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;My problem involves a non-tab delimited txt file that causes errors when using PROC IMPORT.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've scoured the community page and StackOverflow and can't seem to find what I need. This is for an assignment so I have to use Proc Import on this data below. (It's the BigCompanies.txt dataset if that information helps) I am also using SAS University Edition.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;1    Exxon Mobil                  United States     $433.5B   $41.1B   $331.1B   $407.4B
2    JPMorgan Chase               United States     $110.8B     $19B $2,265.8B   $170.1B
3    General Electric             United States     $147.3B   $14.2B   $717.2B   $213.7B
4    Royal Dutch Shell            Netherlands       $470.2B   $30.9B   $340.5B   $227.6B
5    ICBC                         China              $82.6B   $25.1B $2,039.1B   $237.4B
6    HSBC Holdings                United Kingdom      $102B   $16.2B   $2,550B   $164.3B
7    PetroChina                   China             $310.1B   $20.6B   $304.7B   $294.7B
8    Berkshire Hathaway           United States     $143.7B   $10.3B   $392.6B   $202.2B
9    Wells Fargo                  United States      $87.6B   $15.9B $1,313.9B   $178.7B
10   Petrobras-Petróleo Brasil    Brazil            $145.9B   $20.1B   $319.4B     $180B&lt;/PRE&gt;
&lt;P&gt;As you can see there is a large space between all of the variables. So I've tried manually inserting the proc import and using the import wizard to help.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/* Generated Code (IMPORT) */
/* Source File: BigCompanies.txt */
/* Source Path: /folders/myfolders */
/* Code generated on: 2/18/20, 12:47 PM */

%web_drop_table(WORK.Comp);


FILENAME REFFILE '/folders/myfolders/BigCompanies.txt' ENCODING='wlatin1';

PROC IMPORT DATAFILE=REFFILE
	DBMS=DLM
	OUT=WORK.Comp
	REPLACE;
	GETNAMES=NO;
	GUESSINGROWS=max;
	Delimiter='20'x;
RUN;

PROC CONTENTS DATA=WORK.Comp; RUN;

PROC PRINT DATA= Work.COMP (Obs=12);
RUN;

%web_open_table(WORK.Comp);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I'm still a beginner in SAS but I don't understand why it produces this&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If I don't have Max for guessingrows it leaves out all of the rest of the variables but it has 55 variables and most of them are blanks.&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="image.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/36222i79D517B30C880DE2/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;All of the code I have tried is a simple modification of what is above. Trying different things. If I try having it read as a Tab instead of spaces all of the information is displayed in one line.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any help would be nice. I just have a sinking feeling it's really simple.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Feb 2020 18:54:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-properly-use-PROC-IMPORT-for-a-multi-spaced-delimited/m-p/625660#M184424</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-02-18T18:54:38Z</dc:date>
    </item>
    <item>
      <title>Re: How do I properly use PROC IMPORT for a multi spaced delimited text file?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-properly-use-PROC-IMPORT-for-a-multi-spaced-delimited/m-p/625662#M184425</link>
      <description>&lt;P&gt;Sure I can attach it. And yes I have made sure.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="When it is read as a TAB" style="width: 408px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/36223iD9515BCB795FF379/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="When it is read as a TAB" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;When it is read as a TAB&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Is not using Proc Import just SAS U edition only or SAS in general?&lt;/P&gt;</description>
      <pubDate>Tue, 18 Feb 2020 19:00:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-properly-use-PROC-IMPORT-for-a-multi-spaced-delimited/m-p/625662#M184425</guid>
      <dc:creator>rbivens</dc:creator>
      <dc:date>2020-02-18T19:00:25Z</dc:date>
    </item>
    <item>
      <title>Re: How do I properly use PROC IMPORT for a multi spaced delimited text file?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-properly-use-PROC-IMPORT-for-a-multi-spaced-delimited/m-p/625664#M184427</link>
      <description>Yeah, you'll have to write the code for that. If you look at your first line you'll see you have fields like 'Exxon Mobil" so you cannot use space as your delimiter since there are spaces in the field as well. Note that you'll want to read in your amounts as characters and convert them due to the B at the end or you'll have to write your own informat. &lt;BR /&gt;</description>
      <pubDate>Tue, 18 Feb 2020 19:03:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-properly-use-PROC-IMPORT-for-a-multi-spaced-delimited/m-p/625664#M184427</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-02-18T19:03:54Z</dc:date>
    </item>
    <item>
      <title>Re: How do I properly use PROC IMPORT for a multi spaced delimited text file?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-properly-use-PROC-IMPORT-for-a-multi-spaced-delimited/m-p/625665#M184428</link>
      <description>This would be the same regardless if it's SAS UE or SAS Base or SAS EG - you'd have to do the same thing. I think the GUI let's you point and click to generate the code in Base/EG but I'm not sure Studio has that feature. It's like trying to read it into Excel, you'd have to open Excel, import data and then specify where each field started/ended manually by clicking.</description>
      <pubDate>Tue, 18 Feb 2020 19:05:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-properly-use-PROC-IMPORT-for-a-multi-spaced-delimited/m-p/625665#M184428</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-02-18T19:05:01Z</dc:date>
    </item>
    <item>
      <title>Re: How do I properly use PROC IMPORT for a multi spaced delimited text file?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-properly-use-PROC-IMPORT-for-a-multi-spaced-delimited/m-p/625674#M184437</link>
      <description>&lt;P&gt;This might be one of those assignment examples where it is supposed to fail and we are to explain the differences. I did import it using the INFILE method and it came out fine I was just worried that I was doing something horribly wrong as I couldn't find any example on going over this in my notes or online.&lt;/P&gt;</description>
      <pubDate>Tue, 18 Feb 2020 19:16:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-properly-use-PROC-IMPORT-for-a-multi-spaced-delimited/m-p/625674#M184437</guid>
      <dc:creator>rbivens</dc:creator>
      <dc:date>2020-02-18T19:16:12Z</dc:date>
    </item>
    <item>
      <title>Re: How do I properly use PROC IMPORT for a multi spaced delimited text file?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-properly-use-PROC-IMPORT-for-a-multi-spaced-delimited/m-p/625683#M184442</link>
      <description>I'd recommend asking your instructor then.</description>
      <pubDate>Tue, 18 Feb 2020 19:27:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-properly-use-PROC-IMPORT-for-a-multi-spaced-delimited/m-p/625683#M184442</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-02-18T19:27:12Z</dc:date>
    </item>
    <item>
      <title>Re: How do I properly use PROC IMPORT for a multi spaced delimited text file?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-properly-use-PROC-IMPORT-for-a-multi-spaced-delimited/m-p/625689#M184447</link>
      <description>&lt;P&gt;So I found an email from the teacher talking about the problem in question. He got it to work via the import Wizard but that it would be time consuming but I have enough trouble using the Import Wizard for SAS UE he also said he wouldn't take points off if we can still describe our process even if we failed.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Though now I have to go back and figure out how to read the $14B as a numeric via informat.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your help so far!&lt;/P&gt;</description>
      <pubDate>Tue, 18 Feb 2020 19:35:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-properly-use-PROC-IMPORT-for-a-multi-spaced-delimited/m-p/625689#M184447</guid>
      <dc:creator>rbivens</dc:creator>
      <dc:date>2020-02-18T19:35:34Z</dc:date>
    </item>
    <item>
      <title>Re: How do I properly use PROC IMPORT for a multi spaced delimited text file?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-properly-use-PROC-IMPORT-for-a-multi-spaced-delimited/m-p/625763#M184485</link>
      <description>&lt;A href="https://communities.sas.com/t5/SAS-Enterprise-Guide/importing-data-listed-in-billions-of-dollars/m-p/625733/highlight/false#M35555" target="_blank"&gt;https://communities.sas.com/t5/SAS-Enterprise-Guide/importing-data-listed-in-billions-of-dollars/m-p/625733/highlight/false#M35555&lt;/A&gt;</description>
      <pubDate>Wed, 19 Feb 2020 02:34:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-properly-use-PROC-IMPORT-for-a-multi-spaced-delimited/m-p/625763#M184485</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-02-19T02:34:46Z</dc:date>
    </item>
    <item>
      <title>Re: How do I properly use PROC IMPORT for a multi spaced delimited text file?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-properly-use-PROC-IMPORT-for-a-multi-spaced-delimited/m-p/625784#M184495</link>
      <description>&lt;P&gt;Try using double blanks as delimiter by DLMSTR= option&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token statement"&gt;FILENAME&lt;/SPAN&gt; REFFILE &lt;SPAN class="token string"&gt;'/folders/myfolders/BigCompanies.txt'&lt;/SPAN&gt; ENCODING&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN class="token string"&gt;'wlatin1'  DLMSTR='  ' &lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Feb 2020 06:08:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-properly-use-PROC-IMPORT-for-a-multi-spaced-delimited/m-p/625784#M184495</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2020-02-19T06:08:47Z</dc:date>
    </item>
  </channel>
</rss>

