How can I calculate the days between a given date and dates imported to SAS EG via a csv file - dates in the Date9 format. Is it possible to do this via the query builder?
Yes, do a compute field and subtract the dates.
You can specify your date as '01Jan2016'd
It HAS to be specified in this manner.
This assumes that when you imported the data you created a SAS date variable, it has a numeric type and a date format.
As above you need to do a compute field
You can use the INTCK Function get the difference between days - i.e
INTCK('Day','01APR2016"D,"06APR2016"D)
The result in this example is 5
And you can definitely use intck in the query builder. I don't know why, I just feel more "professional" using it to calculate number of days between two dates. Makes no sense, I know!
Tom
Usage of INTCK will be robust if SAS (ever) changes the internal format of date values.
It is also easier to adjust if datetime values need to be compared, as only 'DAY' needs to be changed to 'DTDAY'.
Thank you Kurt! I now have a reasonable explanation for my OCD-like behaviour!!
Tom
In addition to the INTCK function -- super robust and flexible, as @TomKari and others point out, there is a simpler (conceptually) DATDIF function. You can add as a Computed Column, Advanced Expression in the Query Builder. Example:
DATDIF(t1.Shipped,t1.Returned,'act/act')
Well, as I always tell people, there's at least twelve ways to do everything in SAS!
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Check out this tutorial series to learn how to build your own steps in SAS Studio.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.