BookmarkSubscribeRSS Feed
PujaDas
Calcite | Level 5
Hi Team,
I am new in sas programming. Can anyone help me to build the logic of the below.
Here the date is assigned as a char And we are getting output in pdf as for example 03/03/2017. Now the requirement is to change the ouput date look to 03-MAR-17.
Please help me out how it is possible to do.

Thsnks,
Puja
3 REPLIES 3
Reeza
Super User

You need to show how you're using the date and we can then show you how to change the format. 

art297
Opal | Level 21

1. Converting a character date to a SAS date: SASDateVariableName=input(yourdatevariable, anydtdte.);

2. Assign the desired format: format ASDateVariableName mmddyyD10.;

 

Other variants of that format can be found at: http://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a000590662.htm

 

Art, CEO, AnalystFinder.com

 

Astounding
PROC Star

Well, I would never show you have to get a date with a two-digit year.  I hope this is close enough:

 

data want;

length mydate $ 11;

set have;

mydate = put(input(mydate, mmddyy10.), date11.);

run;

 

That's assuming that 03/03/2017 is actually in MMDDYY form, rather than DDMMYY form.

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

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

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
  • 1391 views
  • 0 likes
  • 4 in conversation