I need to pass a column name through a variable.
%let dsn=a1234;
data temp;
set &a1234;
if age>=20;
run;
Where 'a1234' is the column name (present in the file) that I want to use; and not the string a1234.
The reason I want to do this is to have all the parameters defined at the top of the script which makes the code more clean (in this case).
Thanks in advance for any feedback.