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

Dear SAS community,

I have list of date variables (date_x, date_y, date_z, etc.) for each Record (ID). So for each ID, I need to pick the earliest date variable from the list of all date variables and create a new date variable (date_new) using the earliest date variable for each ID. Any help with SAS code for creating this new date variable is appreciated.

 

NOTE: I have only one row per ID with all my date variables recorded as separate variables (single row per ID).

 

Sample Data Set

 

ID      Date_X     Date_Y     Date_Z    Date_P    Date_Q   Date_R

 

 

 

Thanks in advance!

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User

Please do not post the same question multiple times. 

 

You can use the MIN() function to get the lowest date and it will ignore missing dates.

 

min_date = min(date_x, date_y, date_z, ... , date_R);

View solution in original post

2 REPLIES 2
sms1891
Quartz | Level 8

Dear SAS community,

I have list of date variables (date_x, date_y, date_z, etc.) for each Record (ID). So for each ID, I need to pick the earliest date variable from the list of all date variables and create a new date variable (date_new) using the earliest date variable for each ID. Any help with SAS code for creating this new date variable is appreciated.

 

NOTE: I have only one row per ID with all my date variables recorded as separate variables (single row per ID).

 

Sample Data Set

 

ID      Date_X     Date_Y     Date_Z    Date_P    Date_Q   Date_R

 

 

 

Thanks in advance!

Reeza
Super User

Please do not post the same question multiple times. 

 

You can use the MIN() function to get the lowest date and it will ignore missing dates.

 

min_date = min(date_x, date_y, date_z, ... , date_R);

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!

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
  • 2 replies
  • 8927 views
  • 2 likes
  • 2 in conversation