<?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: Handle missing value characters in csv with proc import for 1000+ variables in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Handle-missing-value-characters-in-csv-with-proc-import-for-1000/m-p/612316#M178645</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/302959"&gt;@Utabikunda&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Well, then the DSD option must not functioning properly, as it does not remove the quotation marks surrounding values in the csv file to read in. I also don't see how macro coding could solve the problem, if SAS can't guess the variable type, short of specifying the names of each character variable and each numeric variable, which I'm trying to avoid doing for 1,000+ variables. I was able to very easily handle this issue using read.csv() function in R, and make another dataset to read into SAS. I hope the DSD option is improved in future versions.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Don't be silly. The DSD option is such a basic thing that tens of thousands of SAS users around the world would be screaming at SAS if it didn't work.&lt;/P&gt;
&lt;P&gt;Please post some REAL example input data you have, so we can take a look at the issue without having to guess.&lt;/P&gt;</description>
    <pubDate>Tue, 17 Dec 2019 06:46:07 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2019-12-17T06:46:07Z</dc:date>
    <item>
      <title>Handle missing value characters in csv with proc import for 1000+ variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Handle-missing-value-characters-in-csv-with-proc-import-for-1000/m-p/611172#M178081</link>
      <description>&lt;P&gt;I have a dataset shared with me in csv format. Some NA values have been inexplicably set as '.' in this csv format. This causes PROC IMPORT to guess these variables as character, when they should be numeric. I have seen many posts that suggest the infile statement with a data step, and some formulation of NA&amp;nbsp;handling using iteration and if-then statements.This would then require me to then manually change the columns from character to numeric by name. There are 1000+ columns.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Dec 2019 21:27:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Handle-missing-value-characters-in-csv-with-proc-import-for-1000/m-p/611172#M178081</guid>
      <dc:creator>Utabikunda</dc:creator>
      <dc:date>2019-12-11T21:27:49Z</dc:date>
    </item>
    <item>
      <title>Re: Handle missing value characters in csv with proc import for 1000+ variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Handle-missing-value-characters-in-csv-with-proc-import-for-1000/m-p/611178#M178083</link>
      <description>&lt;P&gt;You can try the GUESSINGROWS statement of PROC IMPORT.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://go.documentation.sas.com/?cdcId=pgmmvacdc&amp;amp;cdcVersion=9.4&amp;amp;docsetId=proc&amp;amp;docsetTarget=p13kvtl8ezj13in17i6m99jypcwi.htm&amp;amp;locale=en" target="_blank" rel="noopener"&gt;https://go.documentation.sas.com/?cdcId=pgmmvacdc&amp;amp;cdcVersion=9.4&amp;amp;docsetId=proc&amp;amp;docsetTarget=p13kvtl8ezj13in17i6m99jypcwi.htm&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Dec 2019 22:37:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Handle-missing-value-characters-in-csv-with-proc-import-for-1000/m-p/611178#M178083</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-12-11T22:37:02Z</dc:date>
    </item>
    <item>
      <title>Re: Handle missing value characters in csv with proc import for 1000+ variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Handle-missing-value-characters-in-csv-with-proc-import-for-1000/m-p/611185#M178085</link>
      <description>&lt;P&gt;Appreciate the suggestion. Guessingrows still has the same issue, because it is the '.' NA symbol that turns the variable into a character. Not a factor of the number of rows SAS reads.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Dec 2019 00:53:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Handle-missing-value-characters-in-csv-with-proc-import-for-1000/m-p/611185#M178085</guid>
      <dc:creator>Utabikunda</dc:creator>
      <dc:date>2019-12-12T00:53:59Z</dc:date>
    </item>
    <item>
      <title>Re: Handle missing value characters in csv with proc import for 1000+ variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Handle-missing-value-characters-in-csv-with-proc-import-for-1000/m-p/611216#M178099</link>
      <description>&lt;P&gt;1000+ columns? That screams "DESIGN FAIL" in the first place.&lt;/P&gt;
&lt;P&gt;But since you've been given this and have to somehow beat it into usable shape, let's see:&lt;/P&gt;
&lt;P&gt;How is that file structured? In particular, are all numeric columns situated to the right of a given column (e.g. numeric columns start at column 5, and all columns up to the end of a record are numeric)?&lt;/P&gt;
&lt;P&gt;What character is used as delimiter?&lt;/P&gt;
&lt;P&gt;Could you please post an example of the file (header and a few data lines) to illustrate this, and which we can use for testing our code ideas?&lt;/P&gt;
&lt;P&gt;Please use the {i} button for posting such data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Dec 2019 06:35:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Handle-missing-value-characters-in-csv-with-proc-import-for-1000/m-p/611216#M178099</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-12-12T06:35:38Z</dc:date>
    </item>
    <item>
      <title>Re: Handle missing value characters in csv with proc import for 1000+ variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Handle-missing-value-characters-in-csv-with-proc-import-for-1000/m-p/611264#M178124</link>
      <description>&lt;P&gt;Thanks for sticking with this problem. Unfortunately, the large number of columns isn't a design flaw, just the number of variables needed in the dataset (there are also quite a few observations). So I have to work with them, and the column order has been created in consideration of survey order. I can't share any of the data, either, but I can post a representation of it - keeping in mind any solution that would require reformatting a column individually wouldn't scale from a few columns to 1,000. It's comma delimited, so the raw text of csv would look as below.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The two other languages I've used, R and Python, both have ways to indicate NULL/NA character strings included in basic operations for reading in data, so I'm kind of mystified this isn't available in SAS.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;ISOUTSIDE,EATDRYFOOD,TYPE,OTHERTYPE,ISFRIENDLY
1,1,dog,,.
1,.,dog,,.
1,.,cat,,.
0,.,dog,,.
0,.,,,.
0,.,,My pet's name is Jeffrey,.
.,.,unknown,,.
.,1,dog,,.
.,1,dog,,1
1,0,cat,,0
1,0,cat,,1
1,0,elf,,1&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Dec 2019 12:11:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Handle-missing-value-characters-in-csv-with-proc-import-for-1000/m-p/611264#M178124</guid>
      <dc:creator>Utabikunda</dc:creator>
      <dc:date>2019-12-12T12:11:06Z</dc:date>
    </item>
    <item>
      <title>Re: Handle missing value characters in csv with proc import for 1000+ variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Handle-missing-value-characters-in-csv-with-proc-import-for-1000/m-p/611268#M178127</link>
      <description>&lt;P&gt;I saved your data to a file and ran this code:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc import
  datafile='$HOME/sascommunity/utabikunda.csv'
  dbms=csv
  out=utabikunda
  replace
;
run;

proc print data=utabikunda noobs;
run;

proc contents data=utabikunda;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;After which I got this output:&lt;/P&gt;
&lt;PRE&gt;ISOUTSIDE      EATDRYFOOD    TYPE       OTHERTYPE                     ISFRIENDLY

        1               1    dog                                               .
        1               .    dog                                               .
        1               .    cat                                               .
        0               .    dog                                               .
        0               .                                                      .
        0               .               My pet's name is Jeffrey               .
        .               .    unknown                                           .
        .               1    dog                                               .
        .               1    dog                                               1
        1               0    cat                                               0
        1               0    cat                                               1
        1               0    elf                                               1
&lt;/PRE&gt;
&lt;PRE&gt;                                                       Die Prozedur CONTENTS

                  Dateiname         WORK.UTABIKUNDA                                  Beobachtungen            12  
                  Membertyp         DATA                                             Variablen                5   
                  Engine            V9                                               Indizes                  0   
                  Erstellt          12.12.2019 13:18:02                              Beobachtungslänge        56  
                  Zuletzt geändert  12.12.2019 13:18:02                              Gelöschte Beobachtungen  0   
                  Schutz                                                             Komprimiert              NEIN
                  Dateityp                                                           Sortiert                 NEIN
                  Etikett                                                                                         
                  Datendarstellung  HP_UX_64, RS_6000_AIX_64, SOLARIS_64, HP_IA64                                 
                  Codierung         latin9  European (ISO)                                                        


                                                Engine/Host-abhängige Informationen

Dateiseitengröße                  65536                                                                                             
Anzahl der Dateiseiten            1                                                                                                 
Erste Datenseite                  1                                                                                                 
Max. Anz. Beob. pro Seite         1166                                                                                              
Anz. Beob. auf erster Datenseite  12                                                                                                
Anzahl der Dateireparaturen       0                                                                                                 
Dateiname                         /wadaten/work2/saswork/SAS_work9750024C002C_as-dwh01/                                             
                                  SAS_workF399024C002C_as-dwh01/utabikunda.sas7bdat                                                 
Erstellt mit Release              9.0401M5                                                                                          
Erstellt mit Betriebssystem       AIX                                                                                               
Inode-Nummer                      140231                                                                                            
Zugriffsberechtigung              rw-r--r--                                                                                         
Besitzername                      e9782                                                                                             
Dateigröße                        128KB                                                                                             
Dateigröße (Byte)                 131072                                                                                            


                                           Alphabetische Liste der Variablen und Attribute
 
                                                                           Ausg.      Einl.
                                       #    Variable      Typ     Länge    Format     Format

                                       2    EATDRYFOOD    Num         8    BEST12.    BEST32.
                                       5    ISFRIENDLY    Num         8    BEST12.    BEST32.
                                       1    ISOUTSIDE     Num         8    BEST12.    BEST32.
                                       4    OTHERTYPE     Char       24    $24.       $24.   
                                       3    TYPE          Char        7    $7.        $7.    
&lt;/PRE&gt;
&lt;P&gt;As you can see, the numeric columns were correctly imported, with missing values where a dot was encountered.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Dec 2019 12:20:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Handle-missing-value-characters-in-csv-with-proc-import-for-1000/m-p/611268#M178127</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-12-12T12:20:37Z</dc:date>
    </item>
    <item>
      <title>Re: Handle missing value characters in csv with proc import for 1000+ variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Handle-missing-value-characters-in-csv-with-proc-import-for-1000/m-p/611297#M178147</link>
      <description>&lt;P&gt;Realizing it might actually be a problem of quotation marks around values. There is a DSD option for the infile statement of a data step, but I believe this method of importing csv data requires specifying each column. Is there a similar analogue with proc import to remove quotations around imported values?&lt;/P&gt;</description>
      <pubDate>Thu, 12 Dec 2019 13:50:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Handle-missing-value-characters-in-csv-with-proc-import-for-1000/m-p/611297#M178147</guid>
      <dc:creator>Utabikunda</dc:creator>
      <dc:date>2019-12-12T13:50:37Z</dc:date>
    </item>
    <item>
      <title>Re: Handle missing value characters in csv with proc import for 1000+ variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Handle-missing-value-characters-in-csv-with-proc-import-for-1000/m-p/611303#M178153</link>
      <description>&lt;P&gt;When you inspect the log (Maxim 2) of the proc import code I ran, you can see that the data step created by proc import already uses the dsd option (to treat successive delimiters as missing values).&lt;/P&gt;
&lt;P&gt;If you have specific problems with certain values, take the data step from the log and modify it (there's a lot of things you can optimize right from the start). Once you have code that fixes one column, fixing a lot of columns is "just" some macro-coding away.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Dec 2019 13:59:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Handle-missing-value-characters-in-csv-with-proc-import-for-1000/m-p/611303#M178153</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-12-12T13:59:31Z</dc:date>
    </item>
    <item>
      <title>Re: Handle missing value characters in csv with proc import for 1000+ variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Handle-missing-value-characters-in-csv-with-proc-import-for-1000/m-p/611874#M178443</link>
      <description>&lt;P&gt;Well, then the DSD option must not functioning properly, as it does not remove the quotation marks surrounding values in the csv file to read in. I also don't see how macro coding could solve the problem, if SAS can't guess the variable type, short of specifying the names of each character variable and each numeric variable, which I'm trying to avoid doing for 1,000+ variables. I was able to very easily handle this issue using read.csv() function in R, and make another dataset to read into SAS. I hope the DSD option is improved in future versions.&lt;/P&gt;</description>
      <pubDate>Sun, 15 Dec 2019 13:45:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Handle-missing-value-characters-in-csv-with-proc-import-for-1000/m-p/611874#M178443</guid>
      <dc:creator>Utabikunda</dc:creator>
      <dc:date>2019-12-15T13:45:59Z</dc:date>
    </item>
    <item>
      <title>Re: Handle missing value characters in csv with proc import for 1000+ variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Handle-missing-value-characters-in-csv-with-proc-import-for-1000/m-p/611875#M178444</link>
      <description>&lt;P&gt;Normal input will read a period is missing. SAS is able to read that file as it is without problems. PROC IMPORT even works.&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc import datafile=test out=test replace 
  dbms=csv;
run;

proc contents data=test varnum; run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;PRE&gt;The CONTENTS Procedure

             Variables in Creation Order

#    Variable      Type    Len    Format     Informat

1    ISOUTSIDE     Num       8    BEST12.    BEST32.
2    EATDRYFOOD    Num       8    BEST12.    BEST32.
3    TYPE          Char      7    $7.        $7.
4    OTHERTYPE     Char     24    $24.       $24.
5    ISFRIENDLY    Num       8    BEST12.    BEST32.
&lt;/PRE&gt;
&lt;P&gt;Your problem of PROC IMPORT converting numeric to text is caused by something else.&amp;nbsp; Do some of the numeric values have text strings? Like the NA in your message?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;A normal CSV file will indicate a missing value be not putting any characters between the commas.&amp;nbsp; Can you have who ever created the file create it using that standard convention?&lt;/P&gt;</description>
      <pubDate>Sun, 15 Dec 2019 14:11:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Handle-missing-value-characters-in-csv-with-proc-import-for-1000/m-p/611875#M178444</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-12-15T14:11:50Z</dc:date>
    </item>
    <item>
      <title>Re: Handle missing value characters in csv with proc import for 1000+ variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Handle-missing-value-characters-in-csv-with-proc-import-for-1000/m-p/611876#M178445</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/302959"&gt;@Utabikunda&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Well, then the DSD option must not functioning properly, as it does not remove the quotation marks surrounding values in the csv file to read in. I also don't see how macro coding could solve the problem, if SAS can't guess the variable type, short of specifying the names of each character variable and each numeric variable, which I'm trying to avoid doing for 1,000+ variables. I was able to very easily handle this issue using read.csv() function in R, and make another dataset to read into SAS. I hope the DSD option is improved in future versions.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;SAS will remove quotes around values. Having quotes around text that only contains digits will not confuse PROC IMPORT.&amp;nbsp; I modified your example to add some quotes and PROC IMPORT still read the file fine.&amp;nbsp; You need to dig deeper to figure out what exactly is causing your problem.&amp;nbsp; Perhaps the quotes are not quotes, but are those "pretty" quotes that typesetters use?&lt;/P&gt;
&lt;PRE&gt;ISOUTSIDE,EATDRYFOOD,TYPE,OTHERTYPE,ISFRIENDLY
1,1,dog,,.
1,'.',dog,,.
1,.,cat,,"."
0,.,dog,,.
0,.,,,.
0,.,,My pet's name is Jeffrey,.
.,.,unknown,,.
.,1,dog,,.
.,1,dog,,1
1,0,cat,,0
1,0,cat,,1
1,0,elf,,1&lt;/PRE&gt;</description>
      <pubDate>Sun, 15 Dec 2019 14:16:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Handle-missing-value-characters-in-csv-with-proc-import-for-1000/m-p/611876#M178445</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-12-15T14:16:54Z</dc:date>
    </item>
    <item>
      <title>Re: Handle missing value characters in csv with proc import for 1000+ variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Handle-missing-value-characters-in-csv-with-proc-import-for-1000/m-p/611877#M178446</link>
      <description>&lt;P&gt;One issue that can confuse SAS is when you have a pair of values where one starts with a quote and the other ends with a quote. That will look like a single value that contains commas but is enclosed in quotes and cause the columns to get shifted.&lt;/P&gt;
&lt;P&gt;Consider this file with 6 fields.&lt;/P&gt;
&lt;PRE&gt;A,B,C,X,Y.D
S1,S2,S3,1,2,Yes
'twas,a,goin',3,4,No&lt;/PRE&gt;
&lt;P&gt;That last row will look to SAS like it has only 4 values. So the text, No, that should be the value of D is read as the value of X and will either fail or if using PROC IMPORT cause it to guess that X should be a character variable.&lt;/P&gt;</description>
      <pubDate>Sun, 15 Dec 2019 14:27:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Handle-missing-value-characters-in-csv-with-proc-import-for-1000/m-p/611877#M178446</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-12-15T14:27:27Z</dc:date>
    </item>
    <item>
      <title>Re: Handle missing value characters in csv with proc import for 1000+ variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Handle-missing-value-characters-in-csv-with-proc-import-for-1000/m-p/612316#M178645</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/302959"&gt;@Utabikunda&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Well, then the DSD option must not functioning properly, as it does not remove the quotation marks surrounding values in the csv file to read in. I also don't see how macro coding could solve the problem, if SAS can't guess the variable type, short of specifying the names of each character variable and each numeric variable, which I'm trying to avoid doing for 1,000+ variables. I was able to very easily handle this issue using read.csv() function in R, and make another dataset to read into SAS. I hope the DSD option is improved in future versions.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Don't be silly. The DSD option is such a basic thing that tens of thousands of SAS users around the world would be screaming at SAS if it didn't work.&lt;/P&gt;
&lt;P&gt;Please post some REAL example input data you have, so we can take a look at the issue without having to guess.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Dec 2019 06:46:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Handle-missing-value-characters-in-csv-with-proc-import-for-1000/m-p/612316#M178645</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-12-17T06:46:07Z</dc:date>
    </item>
    <item>
      <title>Re: Handle missing value characters in csv with proc import for 1000+ variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Handle-missing-value-characters-in-csv-with-proc-import-for-1000/m-p/759387#M239985</link>
      <description>&lt;P&gt;I'll happily sign up for the group of screamers. Your answer provides no help&lt;/P&gt;</description>
      <pubDate>Wed, 04 Aug 2021 16:38:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Handle-missing-value-characters-in-csv-with-proc-import-for-1000/m-p/759387#M239985</guid>
      <dc:creator>ayaz1</dc:creator>
      <dc:date>2021-08-04T16:38:29Z</dc:date>
    </item>
    <item>
      <title>Re: Handle missing value characters in csv with proc import for 1000+ variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Handle-missing-value-characters-in-csv-with-proc-import-for-1000/m-p/759404#M239992</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/392246"&gt;@ayaz1&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I'll happily sign up for the group of screamers. Your answer provides no help&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;If you are having trouble with a specific delimited text file start a new thread and provide the details there.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Aug 2021 17:21:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Handle-missing-value-characters-in-csv-with-proc-import-for-1000/m-p/759404#M239992</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2021-08-04T17:21:14Z</dc:date>
    </item>
  </channel>
</rss>

