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!
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);
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!
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 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.
Ready to level-up your skills? Choose your own adventure.