Rick A. answered 03/26/19
Tutor
5
(33)
Experienced SAS Professional
Here is the solution:
data raa;
monyy='05May2013';
format date date9.;
date=input(monyy, date9.);
run;
proc contents; run;
notice that in the PROC CONTENTS, monyy is character and date is numeric.