I have three data columns with completion dates over 3 days. Some days do not have a date and some do which would indicate completion. How do i check which cells have dates completed across the board for all three days.
If you're looking to find the observations in your data that have missing values, you could use the cmiss function to count the number of missing values in the date variables and then output those observations where there are more than one. It would look something like this:
data out;
set in;
if cmiss(date1,date2,date3) > 0 then output;
run;
If you're looking to find the observations in your data that have missing values, you could use the cmiss function to count the number of missing values in the date variables and then output those observations where there are more than one. It would look something like this:
data out;
set in;
if cmiss(date1,date2,date3) > 0 then output;
run;