BookmarkSubscribeRSS Feed
Anilsk
Fluorite | Level 6
How to convert the SAS data to character and numeric form?
3 REPLIES 3
Florent
Quartz | Level 8
Hello,

The SAS dates are stored as numeric by default. You should have a look to the different formats that you can apply to dates.

If you want to convert a SAS date into a character then I suggest you to use the put statement (refer to the online doc for more detailed informations).

e.g.

data test;
set ;

DateAsChar = put(DateVar, ddmmyy10.);
run;


I hope it helps.

Regards,
Florent
sbb
Lapis Lazuli | Level 10 sbb
Lapis Lazuli | Level 10
Suggested Google advanced search argument, this topic / post:

using sas dates site:sas.com


Scott Barry
SBBWorks, Inc.
Anilsk
Fluorite | Level 6
Thanks Florent, I was able to convert it successfully.

hackathon24-white-horiz.png

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.

Latest Updates

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 1348 views
  • 0 likes
  • 3 in conversation