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