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;

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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