« How to install Drush on ITS servers | Main | SAS FAQ #31346987234: The DSD Infile option »
January 25, 2013
Read variables or datasets with names containing spaces
SAS hates spaces - which I am fine with - but sometimes a variable or dataset exists with spaces in it's name. To get around this put the name/variable into quotes followed by an 'n'.
proc contents data=work.'poorly named dataset'n;
run;
BAM
Posted by kkwaiser at January 25, 2013 02:43 PM