Hi,
I have a SAS data set which contains 3 variables and 300 obs. Name of variables are Tarih, K1 and K2. Tarih variable is actually dates of data on weekly basis. Well, I wanna create a new SAS data set which includes last 13 weeks when I run the code every times. How can I do that?
Thanks.
data want;
set have;
if tarih>=intnx('week',today(),-13,'s');
/* ALTERNATIVE: if tarih >= today()-13*7; */
run;
@BURHAN_CIGDEM wrote:
Thank you but it did not work. "Tarih" variable is stored as numeric variable. For example; 20180511(yyyymmdd). Should I convert it date format or something else?
Show us the SASLOG. Show us other evidence that it did not work.
The code I wrote expects TARIH to be numeric.
Burhan, show us the code then. Show us (some of) the data. Don't keep replying without showing us what is happening. Show us.
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.