While I think you would be better off creating a numeric variable instead of changing the character variable, that's a different story. Keeping my opinion out of it, here is a possibility:
data want;
length datevar $ 10;
set have;
datevar = put (input(datevar, mmddyy8.), mmddyys10.);
run;
The "s" in the middle of the new format name indicates that slashes should be used as separators.
The 2025 SAS Hackathon has begun!
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.