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.

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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
  • 3 replies
  • 699 views
  • 1 like
  • 3 in conversation