@hjjijkkl wrote:
Yes, I did proc content and it is saying data variable is Char. How do I change the format after proc content?
Create a new data set with a new variable:
data want;
set have;
newdate = input(chardate,mmddyy10.);
format newdate mmddyy10.;
run;
Or possibly go back to the step where where the data was read into SAS and use the mmddyy10. informat to read the value.