|
Dear all,
I have a wish but have no idea how to work things out. I have the
folowing
data data.files;
length file $8;
input file;
datalines;
file1
file2
file3;
run;
data data.files (drop=total);
set data.files;
total + 1;
call symputx('last',total);
run;
Now the problem starts....
How do I create a do loop that creates a proc contents and appends this
output for all of these datasets in one file...
I hope someone has brighter ideas than me at this point
Greetings Lieuwe
|