Hi, Im new to sas and Im getting this error on my code: ERROR: DATA STEP Component Object failure. Aborted during the COMPILATION phase. ERROR 557-185: Variable datasets is not an object. Im just trying to create a new data with a known set... proc contents data=datasets.nlsy1; /** checked it exists**/ run; data cmc_obes.nlsy_clean;/** different library **/ set=datasets.nlsy1; run; any ideas on how to fix it? Thanks,
... View more