BookmarkSubscribeRSS Feed
dlansdowne0090
Calcite | Level 5

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?

8 REPLIES 8
Reeza
Super User

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. 

 

 

Chokin
Fluorite | Level 6

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

TomKari
Onyx | Level 15

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

LinusH
Tourmaline | Level 20
@TomKari it definitely looks more advanced 😆
Data never sleeps
Kurt_Bremser
Super User

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'.

TomKari
Onyx | Level 15

Thank you Kurt! I now have a reasonable explanation for my OCD-like behaviour!!

 

Tom

ChrisHemedinger
Community Manager

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')

 

datdif.png

SAS For Dummies 3rd Edition! Check out the new edition, covering SAS 9.4, SAS Viya, and all of the modern ways to use SAS!
TomKari
Onyx | Level 15

Well, as I always tell people, there's at least twelve ways to do everything in SAS!

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

Creating Custom Steps in SAS Studio

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 8 replies
  • 3469 views
  • 3 likes
  • 7 in conversation