Hi All--
I have a date variable which I use to identify the year week number by so a value of 1 to 52.
data want;
set have;
weeknum=week(date,'u');
run;
Notice notice my week starts on Sunday indicated by 'u'
What I also need and I can't figure out how to do is the actual first day of the week date and the date of the last day of the week.
data want;
set have;
weeknum=week(date,'u');
weekstart_dt=?????
weekend_dt=?????
run;
Any feedback/assistance will be much appreciated.
Thanks!
Try
weekstart_dt=intnx('WEEK', '01JAN2014'D, weeknum) ;
weekend_dt=intnx('WEEK', '01JAN2014'D, weeknum, 'END') ;
Richard
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.