Previous PageNext Page

SAS Date from Month, Day, Year
Use the MDY function to convert month, day, and year to a SAS date.

date = mdy(12, 25, 1999);
month=12; day=25; year=1999;
date = mdy(month, day, year);

Previous PageTable Of ContentsNext Page