BookmarkSubscribeRSS Feed
septemberbulb
Obsidian | Level 7

Hi,

 

Could anyone help me with this issue?  Now I have the coding to run the data based on previous day, what I have is as below:

 

%let APPCATIONDATE = %eval(%sysfunc(today())-1);

 

How to change it to past N days, for example I want the past 3 days data or 5 days data?

 

Thank you very much.

1 REPLY 1
RW9
Diamond | Level 26 RW9
Diamond | Level 26
%let numdays=3;

data dataforlastdays;
  set maindata;
  where applicationdate >= today() - &numdays.;
run;

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
  • 884 views
  • 0 likes
  • 2 in conversation