What is the value of Common_Names in row one? I encountered this problem and I am not sure I understand what value is required. below is the code. libname out "~/EPG1V2/output"; *libname out "~/EPG194/output"; data out.fox; set pg1.np_species; where Category='Mammal' and Common_Names like '%Fox%' and Common_Names not like '%Squirrel%'; drop Category Record_Status Occurrence Nativeness; run;
... View more