SAS Programming

DATA Step, Macro, Functions and more
BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
akhileshJoshi
Fluorite | Level 6

Hi All,

 

I am trying to getting month and year from a datetime. field. While I manage to get May2017 from '02MAY17:07:57:59', I need it in the format 052017 i.e month expressed in digits. Can someone please guide how I can achieve it? Please find below the code I tried.

 

DATA date_constants;
datetime = '02MAY17:07:57:59'dt; /* This is a datetime constant */
run;


TITLE “Unformatted Constants”;
PROC PRINT DATA=date_constants;
VAR datetime;
run;


TITLE “Formatted Constants”;
PROC PRINT DATA=date_constants;
VAR datetime;
FORMAT datetime datetime.;
run;

 

data date_tril;
set date_constants;
serve = datepart(datetime);
format serve monyy7.;


PROC PRINT DATA=date_tril;
run;

 

Thanks,

Akhilesh Joshi

1 ACCEPTED SOLUTION

Accepted Solutions
collinelliot
Barite | Level 11

To be clear, you're not trying to get the month and year from the field. You're extracting the date and then formatting it. I think what you want is mmyyn6. for your format.

View solution in original post

4 REPLIES 4
collinelliot
Barite | Level 11

To be clear, you're not trying to get the month and year from the field. You're extracting the date and then formatting it. I think what you want is mmyyn6. for your format.

akhileshJoshi
Fluorite | Level 6

Hi Colin,

 

That format worked!

 

Thanks much!

Cynthia_sas
SAS Super FREQ

Hi:

  Once you use the DATEPART function, then it should only be a matter of picking the right format, as shown below. As you can see the same date is formatted multiple ways using different formats.

 

cynthia

undefined

akhileshJoshi
Fluorite | Level 6

Awesome ,Cynthia! Thanks a lot!

sas-innovate-white.png

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

Register now!

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
  • 4 replies
  • 16301 views
  • 3 likes
  • 3 in conversation