BookmarkSubscribeRSS Feed
DartRodrigo
Lapis Lazuli | Level 10

Hi, i have a table with loads of dates.

I need a way to look this table everytime i run six months ago.

I use this Where my_date >= '14jul/2015:00:00:00'dt - 180;

But it does not work.

Tks,

Rodrigo Dartibali Elias

4 REPLIES 4
Reeza
Super User

datetime are in seconds, so 6 'months' ago is 30*24*60*60 seconds, except you have months that vary in length.

I recommend using intck or intnx functions.

RW9
Diamond | Level 26 RW9
Diamond | Level 26

It does work, what you are doing is subtracting 180 miliseconds from 14Jul2015 and then any date which is >= to that output.  You need to understand how dates, times, and datetime variables are stored internally - read up in the manual on this.  As for your problem, I would recommend using intck:

where my_date >= intck('month',datepart('14jul2015:00:00:00'dt),-6)

What this is doing is first, taking the datepart of the datetime variable as we are not interested in time part.  Then it is using intck to move, as a monthly interval 6 months back, and finally using this date value as a comparison.

DartRodrigo
Lapis Lazuli | Level 10

Wow, this helps a lot, guys.

Thank you

ballardw
Super User

And go back and tell however named a DATETIME variable as a DATE to cut it out. :smileymischief:

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
  • 4 replies
  • 1180 views
  • 2 likes
  • 4 in conversation