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

Hi,

 

I want to locate the last sunday of month but I am confused whether the following syntax is correct or not.

or there is any other way to locate it?

 

last sunday=INTNX ('WEEK', INTNX('MONTH', TODAY() , 0, 'E') , 0 , 'B')

 

Please if you could help here.

 

Thanks!

 

1 ACCEPTED SOLUTION

Accepted Solutions
Patrick
Opal | Level 21

Looks good to me. 

You take a date and shift it forward to the last day of the month. Then you shift that last day of the month back to the first day of the week the last day of the month is in. With SAS the first day of the week is Sunday.

View solution in original post

5 REPLIES 5
Patrick
Opal | Level 21

Looks good to me. 

You take a date and shift it forward to the last day of the month. Then you shift that last day of the month back to the first day of the week the last day of the month is in. With SAS the first day of the week is Sunday.

Brad39
Fluorite | Level 6

Thank alot

Ksharp
Super User

Or try another function : NWKDOM(n, weekday, month, year)

 

last_sunday=nwkdom( 5 , 1, 2 , 2020) ;

 

-- 5 is for the last week within a month

-- 1 is for sunday

Patrick
Opal | Level 21

@Ksharp 

Learned something new 🙂

Looks like there is a SAS function for almost everything. ....hopefully we will also get "call zero()/call value()" one day.

Ksharp
Super User

Patrick,

OP's statement is also brilliant , which remind me to learn this idea from yours .

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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.

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