BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
L_L
Calcite | Level 5 L_L
Calcite | Level 5

Dear all

I have a dataset with two dates as the example below.

I would like to create a variable X1=DATE2 - DATE1 (months).

How can I proceed?

Thanks in advance for any help

N

Date1

Date2

1

01/06/2006

05/06/2009

2

01/01/2006

28/03/2006

3

01/01/2002

15/01/2002

4

01/09/2007

02/10/2008

5

01/01/2000

02/02/2000

6

01/01/1993

15/01/1993

7

01/10/1989

15/10/1989

8

01/02/1998

01/07/1998

9

01/03/1998

12/03/1998

1 ACCEPTED SOLUTION

Accepted Solutions
art297
Opal | Level 21

Depending upon how you define number of months difference, you might be able to use something like:

data want;

  set have;

  months=intck('month',date1,date2,'c');

run;

View solution in original post

1 REPLY 1
art297
Opal | Level 21

Depending upon how you define number of months difference, you might be able to use something like:

data want;

  set have;

  months=intck('month',date1,date2,'c');

run;

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

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 1 reply
  • 925 views
  • 0 likes
  • 2 in conversation