Hi,
Could you help with a dlm problem?
When I run the following program to get the variable names of a txt file in row,
I do not get the proper truncation?
data noms_var;
length x1-x&nbr_var. $60;
infile "U:\RFS\RFS_Gestion\Opcvm quantitatifs\Modele action\DATA\données hebdo historiques test\For_BV_Per_Share_2.txt" dlm=' ' obs=1 missover;
input (x1-x&nbr_var.) ($) ;
run;
I do get have in the txt file:
EC Name For_BV_Per_Share_11_12_04
I get in SAS
EC#Name#For_BV_Per_Share _11_12_04
(instead of the #, there are squares).
Could you help telling me what do I do wrong?
Many thanks and sorry for my level in english,
anais