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,
Is this what you are looking for?
yearmonth2=input(yearmonth,yymmn6.);
And use
Format yearmonth2 yymm6.;
for display.
Good point, @ballardw!
data have;
yearmonth='200801';
yearmonth2=input(yearmonth,yymmn6.);
Format yearmonth2 yymmn6.;
run;
That's OK. 🙂
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;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.
Ready to level-up your skills? Choose your own adventure.