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-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

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