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;

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
  • 5 replies
  • 2169 views
  • 0 likes
  • 4 in conversation