Hi Everyone,
I have a list variable that is a list of dates ranging from 2008-2016. I'd like to recode those dates into biweekly periods. So essentally a variable with 26 categories and if the date falls within that period, it would be recoded as such.
The result would look like this:
| Date | BiweeklyVariable |
| 1/1/2016 | 1 |
| 1/1/2015 | 1 |
| 1/30/2016 | 2 |
| 1/30/2015 | 2 |
| 2/1/2016 | 3 |
| 2/1/2016 | 3 |
Any help would be greatly appreciated!
Thanks
The function WEEK will return a week number of a year from a SAS date value.So you could use the Week function and divide by 2 and round to get a biweek value. One thing to consider is when your week count starts. The function has option U, V and W which determine some rules for which "week" a date may be based on how the calendar year starts and whether Sunday or Monday is the first day of the week.
Note that since there are 52.14 weeks in a year (and a bit more in leap years) you can have the last couple days of December actually in week 53.
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.