Hi everyone! I got a problem trying to imprort data from .tsv text file to SAS Base. I used the script in one of the previous versions and everything was okay but now when I got SAS 9.4 I get an odd result. The initial source of data is text file with only one column. Here is a sample of data file: TRANS_SUM 2286,5 985,39 3730,23 984,12 To import data I submit the script below: Data TRANS.Test_data (Compress = yes); Retain TRANS_SUM; Infile 'h:\sample2.tsv' DLM = '09'x MISSOVER DSD FIRSTOBS = 2; Input TRANS_SUM_RUR CommaX20.; Format TRANS_SUM_RUR Comma20.2; Run; Earlier I got a dataset with one column and for records of decimal numbers with decimal part separated by comma. TRANS_SUM 2286.5 985.39 3730.23 984.12 But now a dataset is being created but I get missing values instead. TRANS_SUM . . . . Would you be so king to explain me what's wrong with the script.
... View more