/*View Raw Data File Before Writing Code*/ proc fslist fileref='aromas.dat'; run; data aromas; length Condition $ 10 Cure1 Cure2 Cure3 $ 11; infile 'aromas.dat' dsd dlm=' ' missover; /*DSD option deals with embedded delimiters*/ /*DLM= changes delimiter back to a space*/ /*MISSOVER prevents SAS from going to a new record where CURE2 and CURE3 are missing*/ input Condition $ Cure1 $ Cure2 $ Cure3 $; run; proc print data=aromas; title 'Aromatherapy Data Set'; run;