BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
bd_user_10
Quartz | Level 8

Hi Everyone,

 

I have a daily dataset for more than 200 firms (firm id: isin) starting from 2000-01-01 to 2018-06-30. I would like to delete the dates after 2015-12-31 for all firms. Can anyone help? 

 

In my SAS data set, the date format is YYMMDD10.

 

Thanks.

1 ACCEPTED SOLUTION

Accepted Solutions
PaigeMiller
Diamond | Level 26
if date > '31DEC15'd then delete;
--
Paige Miller

View solution in original post

3 REPLIES 3
PaigeMiller
Diamond | Level 26
if date > '31DEC15'd then delete;
--
Paige Miller
bd_user_10
Quartz | Level 8
what a champ!
RW9
Diamond | Level 26 RW9
Diamond | Level 26

One thing I would say is that if you are using that dataset further, then you would be better off reading it with a where clause, as that may be quicker:

data want;
  set have (where=(date <="31dec2015"d));
  /*do your other code here */
run;

It may be a small difference but with lots of data could save some read/write time.

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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
  • 3 replies
  • 808 views
  • 1 like
  • 3 in conversation