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

I'm trying to create a macro that creates a table showing the last Friday of every month. The table will look like this:

So, if i select a range of years, say 2001 to 2013 it will create a table like this:

YEARMONTHLASTFRIDAY
20130222
20130329
20130426
201305...
201306...
201307...
201308...
......
......

including all the years in the range I specify.

1 ACCEPTED SOLUTION

Accepted Solutions
data_null__
Jade | Level 19

This seem reasonable, I always have to experiment with shifted intervals a bit before I can figure it.   Find the last day of the month then find the first day of the week that "begins" on Friday "WEEK.6".

data friday;
   do year=2001 to 2013;
     
do month = 1 to 12;
         b = mdy(month,
1,year);
         e = intnx('Month',b,0,'E');
         f = intnx('week.6',e,0,'B');
         output;
        
end;
     
end;
  
format b e f weekdate.;
  
run;
proc print;
  
run;

8-1-2014 7-03-00 AM.png

View solution in original post

4 REPLIES 4
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Hi,


You would be best served using the interval functions an example is here:

SAS/ETS(R) 9.2 User's Guide

data_null__
Jade | Level 19

This seem reasonable, I always have to experiment with shifted intervals a bit before I can figure it.   Find the last day of the month then find the first day of the week that "begins" on Friday "WEEK.6".

data friday;
   do year=2001 to 2013;
     
do month = 1 to 12;
         b = mdy(month,
1,year);
         e = intnx('Month',b,0,'E');
         f = intnx('week.6',e,0,'B');
         output;
        
end;
     
end;
  
format b e f weekdate.;
  
run;
proc print;
  
run;

8-1-2014 7-03-00 AM.png
cov_derek
Fluorite | Level 6

data _null_, shifted intervals are easy if you remember that interval.1 is the same as interval. It only gets complicated when you have large multipliers.

Ksharp
Super User

NULL,

Don't forget function  nwkdom( ) .

data friday;
   do year=2001 to 2013; 
      do month = 1 to 12; 
           date=nwkdom(5,6,month,year);
           output; 
         end; 
      end; 
   format date weekdate.; 
   run; 


Xia Keshan

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 4 replies
  • 5486 views
  • 6 likes
  • 5 in conversation