BookmarkSubscribeRSS Feed
112211
Obsidian | Level 7

Question : Find weekday for every year from 15aug1940 to now(today) ??

output
August 15, 1940: Thursday
August 15, 1941: Friday
August 15, 1942: Saturday
August 15, 1943: Sunday
August 15, 1944: Tuesday
August 15, 1945: Wednesday
... (continuing for each year up to the current year)

 

 

3 REPLIES 3
MarkusWeick
Barite | Level 11

Hi @112211, you could use the mod function to to get the remainder from the division of the date (an integer number in SAS) by 7. If the remainder is negative you have to add 7. Each of the seven positive possible remainders correspond to a weekday. 

Hope, this helps.

Best, Markus

Please keep the community friendly.
Like posts you agree with or like. Mark helpful answers as “accepted solutions”. Generally have a look at https://communities.sas.com/t5/Getting-Started/tkb-p/community_articles
Kurt_Bremser
Super User

Use the MDY function to build the SAS dates. Then either use the WEEKDAY function to retrieve the weekday in numeric fashion, or use the DOWNAME format to display the weekday name.

Quentin
Super User

Please show the code you have tried, so that we can help you improve it.  In addition to the suggestions from others, you might want to use the INTNX function for advancing the date by a year at a time.

BASUG is hosting free webinars Next up: Mark Keintz presenting History Carried Forward, Future Carried Back: Mixing Time Series of Differing Frequencies on May 8. Register now at the Boston Area SAS Users Group event page: https://www.basug.org/events.

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
  • 3 replies
  • 608 views
  • 1 like
  • 4 in conversation