BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
1 ACCEPTED SOLUTION

Accepted Solutions
PaigeMiller
Diamond | Level 26

In a SAS data step

 

if date2>date1 and not missing(date1);
--
Paige Miller

View solution in original post

3 REPLIES 3
PaigeMiller
Diamond | Level 26

In a SAS data step

 

if date2>date1 and not missing(date1);
--
Paige Miller
PaigeMiller
Diamond | Level 26

@dr_101 wrote:

thank you very much for replying.  will it set the distance between the two events at least one year? some ids have as little as 2 months gap between event 2 and event 1. I want to select only those with atleast 1 year gap.

 

thanks.


Your original post did not specify you wanted 1 year intervals.

 

A 1 year gap can be found via:

 

if date2>(date1+365) and not missing(date1);

Might need an adjustment if you really are concerned about leap years. 

--
Paige Miller

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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
  • 3 replies
  • 643 views
  • 0 likes
  • 2 in conversation