BookmarkSubscribeRSS Feed
KevinC_
Fluorite | Level 6
Hello Everyone,

I am trying to put today's date in an output field in the format of mm/dd/yyyy or mm/dd/yy.

If I use today() i get a sas date. But i am not sure how to convert it to the formats above.

Thank you so much for any input!
2 REPLIES 2
sbb
Lapis Lazuli | Level 10 sbb
Lapis Lazuli | Level 10
It depends on the technique you are using to display the "formatted" date. If you assign a SAS DATE (numeric) variable using today(), then you would use a FORMAT statement in your program with the desired output format specified for your variable, as shown below:

mydate = today();
format mydate mmddyys10.;


And, if you are using a SAS macro variable, you must run the SAS-generate text with a function, as shown below:

TITLE2 "RUN DATE: %SYSFUNC(TODAY(),MMDDYYS10.)";

Scott Barry
SBBWorks, Inc.
KevinC_
Fluorite | Level 6
Thank you so much, Scott! That worked beautifully 🙂

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
  • 2 replies
  • 982 views
  • 0 likes
  • 2 in conversation