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

SAS folks-

I’m looking for an easy way to generate a series of SAS dates given the start date and end date in macro variables (daily or monthly is typical).  I run into this occasionally, and have not found a solution that always works.

Given macro variables START_DATE of 01apr1998 and END_DATE of 11feb2014, then ????

We are running SAS 9.3, and we have ETS, STAT, and GRAPH.

Thanks so much for your help!

Wendy T

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User

Using the intnx function, you can change the month to days for different time periods, ie week, month, quarter etc. Check the documentation for the options Smiley Happy

%let start_date=01Apr1998;

%let end_date=11feb2014;

data want_month;

date="&start_date"d;

do while (date<="&end_date"d);

    output;

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

end;

format date date9.;

run;

data want_day;

date="&start_date"d;

do while (date<="&end_date"d);

    output;

    date=intnx('day', date, 1, 's');

end;

format date date9.;

run;

View solution in original post

3 REPLIES 3
Reeza
Super User

%let start_date=01Apr1998;

%let end_date=11feb2014;

data want;

do date="&start_date"d to "&end_date"d;

output;

end;

format date date9.;

run;

Reeza
Super User

Using the intnx function, you can change the month to days for different time periods, ie week, month, quarter etc. Check the documentation for the options Smiley Happy

%let start_date=01Apr1998;

%let end_date=11feb2014;

data want_month;

date="&start_date"d;

do while (date<="&end_date"d);

    output;

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

end;

format date date9.;

run;

data want_day;

date="&start_date"d;

do while (date<="&end_date"d);

    output;

    date=intnx('day', date, 1, 's');

end;

format date date9.;

run;

WendyT
Pyrite | Level 9

Reeza-

Thanks so much for your elegant answers - they were just what I needed! 

Sorry for the delay in getting them marked - for some reason I have been unable to access the buttons.

Wendy T

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
  • 49460 views
  • 8 likes
  • 2 in conversation