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 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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