I am trying to execute this code in SAS EG:
%let check1 = C:\Datasets;%let check2 = 2531-WB-31MAR21;
%include "%qtrim(&check1)\%qtrim(&check2)\setup_wb.sas";
and I get following Error:
I have no problem with including setup_wb.sas. It works fine except this error
This happens in the included code.
Please run that code again, with
options source2;
and post the log; use this button to copy/paste the log:
Do NOT post the log in a picture!
View solution in original post
Thank you. The problem was in this statement:
%if &batch_shared.= %then %do;
correct code is:
%if "&batch_shared."="" %then %do;
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
Save the date!
SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.
Find more tutorials on the SAS Users YouTube channel.