Scott,
Thanks for the reply. Here is a sample raw input which you are looking for:
0.2,0.5,31,46,57,9.4,7.5
1.3,2.3,20,55,91,4.3,3.0
I have comma separated value in my txt file. I have in all around 400 variable with a similar values. So what I am trying to do is to import the dataset in SAS using Infile statement. Now the format for infile statement is like
DATA WORK.dataset.name;
INFILE "Path.txt" DELIMITER=','x;
INPUT var1 var2 var3;
RUN;
I want my dataset in SAS to be like:
Var1 Var2 Var3 Var4 ..... Varn
0.2 0.5 31 46 ....
1.3 2.3 20 55
It's not feasible to write all 400 variable name in the Input step right ?
So can you suggest me a better way for this ?
Thanks for the help.