BookmarkSubscribeRSS Feed
o_p
SAS Employee o_p
SAS Employee
data have;
yearmonth='200801';
run;

What is the best way to have same variable as date?

I mean it must be shown as 200801 again, but in date format.

 

Thanks,

 

 

5 REPLIES 5
PaigeMiller
Diamond | Level 26

Is this what you are looking for?

yearmonth2=input(yearmonth,yymmn6.);

--
Paige Miller
ballardw
Super User

And use

Format yearmonth2 yymm6.;

for display.

PaigeMiller
Diamond | Level 26

Good point, @ballardw!

--
Paige Miller
o_p
SAS Employee o_p
SAS Employee
data have;
yearmonth='200801';
yearmonth2=input(yearmonth,yymmn6.);
Format yearmonth2 yymmn6.;
run;

That's OK. 🙂

 

 

Steelers_In_DC
Barite | Level 11

data have;
yearmonth='200801';
run;

data want;
format date yymmn6. date2 mmddyy10.;
set have;
date = input(put(yearmonth,$6.),yymmn6.);
date2 = intnx('month',date,0,'end');
run;

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 5 replies
  • 1160 views
  • 0 likes
  • 4 in conversation