Sort the activities data set by the activity starting date. You are not required to sort the holidays data set.
proc sort data=meals;
   by date;
run;