I wrote the below code but got an error like 'library Apple does not exist'. It seems that the macro variable was not recognized.... could you please help me to fix the error? %MACRO CREATE(months); LIBNAME APPLE&months "C:\FRUITS\APPLE&&months"; DATA season&months; SET APPLE&months..good; RUN; %MEND CREATE; %CREATE;
... View more