%let dsin = pre_finalized;
data _null_;
set &dsin. (obs=1);
I also tried
%let dsin = data.pre_finalized;
Is the above the correct way to call my code. It is not the full code. But I am unsure if I am calling the dataset correctly. I keep on getting error logs. Any suggestions?