BookmarkSubscribeRSS Feed
Steelers_In_DC
Barite | Level 11

I have two pieces of code that I only want run in January.  Currently they are running every month which is fine but very ineffiecient.  I am saving history by month for the current year and the december file for the three previous years.  The second code is only taking last december data.  I set it up this way so the end user doesn't have to change anything or have any extra steps.  BUT, I'd like to set it up so this piece of code only runs in January.  Any help will be appreciated.

Thank You,

data testhistory;

set testhistory;

where year(reporting_date) = year(&yeardate) or

          reporting_date = &yeardate11 or

          reporting_date = &yeardate22 or

          reporting_date = &yeardate33;

run;

data testdec;

set testdec;

where reporting_date = &yeardate11;

run;

1 REPLY 1
RichardinOz
Quartz | Level 8

where month(reporting_date) = 12

Richard

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 1 reply
  • 658 views
  • 0 likes
  • 2 in conversation