right, not "dummy" because I didn't write out my details. 🙂
Yet -- This was what I needed.
My RL code executes like this, within the context of our SASHELP.CLASS example.
proc sort data=sashelp.class out=class;
by Age;
data _null_;
do until (eof);
set class end=eof;
by Age;
if first.Age then do;
length fname $200;
retain fname;
fname=catt(put(age,z2.),".csv");
file dummy filevar=Fname dlm=",";
end;
put name sex age height weight;
end;
stop;
run;
I didn't need headers in my RL code, so there are none here.
Thanks Kurt,
Thanks Ballardw,
you are like SAS gods to me.
... View more