data test;
Infile
'C:\Documents and Settings\C-sophie\Desktop\Star_200505.txt' DSD missover;
input svc_accs_id 1-10
score 59;
Run;
I have the following code.
When I use the infile statement to create a sas data set It make the data set column a number 8.
How do I make it a 10 long?
Most if not all of the data is 8 long but input file is a fixed length ascii file.
Also when once the file is imported as a SAS dataset I go to the properties of the table and look at the table column properties the format is blank this is causeing problems when I try and join on the table because it view this column as type = float.
Infile
'C:\Documents and Settings\C-sophie\Desktop\Star_200505.txt' DSD missover;
input svc_accs_id 1-10
score 59;
Run;
I have the following code.
When I use the infile statement to create a sas data set It make the data set column a number 8.
How do I make it a 10 long?
Most if not all of the data is 8 long but input file is a fixed length ascii file.
Also when once the file is imported as a SAS dataset I go to the properties of the table and look at the table column properties the format is blank this is causeing problems when I try and join on the table because it view this column as type = float.