BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
cxkev
Fluorite | Level 6


Hi,

I have a dataset where each observation has a start and end date. I would like a dataset that would create an observation for each month within that range. Please see below example:

Have:

Employee_ID     Start_Date     End_Date     Target

789                    01JAN14          28FEB14     0.85

456                    01JAN14          31MAR14     0.75

Want:

Employee_ID     Month          Target

789                    01JAN14     0.85

789                    01FEB14     0.85

456                    01JAN14     0.75

456                    01FEB14     0.75

456                    01MAR14     0.75

Thanks for any help,

1 ACCEPTED SOLUTION

Accepted Solutions
Kurt_Bremser
Super User

(assuming that start_date and end_date are SAS date values)

data want (keep=employee_id month target);

set have;

format month date7.;

month = intnx('month',start_date,0,'beginning');

do until (month > end_date);

  output;

  month = intnx('month',month,1);

end;

run;

View solution in original post

3 REPLIES 3
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Hi,

data want (keep=employee_id month target);

     set have;

     do I=start_date to end_date;

          month=I;

     end;

     format month date9.;

run;

Kurt_Bremser
Super User

(assuming that start_date and end_date are SAS date values)

data want (keep=employee_id month target);

set have;

format month date7.;

month = intnx('month',start_date,0,'beginning');

do until (month > end_date);

  output;

  month = intnx('month',month,1);

end;

run;

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

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
  • 3 replies
  • 1274 views
  • 3 likes
  • 3 in conversation