I think you want first.dose as you want the first occurence of dosedate within a dose, correct? But WHICH dose dates are missing? If you sorted your data by usubjid dose and dosedate then the first dosedate(s) would be the missing ones.
I might look at
Proc summary data=lab1 nway;
class usubjid dose;
where dosedate ne .; var dosedate;
output lab min(dosedate) = firstdosedate;
run;
Catch up on SAS Innovate 2026
Nearly 200 sessions are now available on demand with the SAS Innovate Digital Pass.