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

Become an Explorer! Join SAS Analytics Explorers to learn and complete challenges that earn rewards!
TomKari
Onyx | Level 15

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

Catch up on SAS Innovate 2026

Nearly 200 sessions are now available on demand with the SAS Innovate Digital Pass.

Explore Now →
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
  • 5100 views
  • 3 likes
  • 7 in conversation