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

sas-innovate-white.png

Special offer for SAS Communities members

Save $250 on SAS Innovate and get a free advance copy of the new SAS For Dummies book! Use the code "SASforDummies" to register. Don't miss out, May 6-9, in Orlando, Florida.

 

View the full agenda.

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