Wednesday, December 3, 2008

Execute code on the fly

Do you want to execute code on the fly?

There are two methods:
1. call execute routine
2. temp file + %include

filename test temp;
data _null_;
filename test;
**** put code here ****;
run;
%include test;

The latter method is more popular and friendly.

No comments: