Since you are working with 0/1 variables, and they are already separate variables, you won't need any examples related to a multilabel format. A simple PROC TABULATE can handle this:
proc tabulate;
var wat_del_ip wat_del_or;
tables wat_del_ip wat_del_or, sum='N' mean*f=percent8.1;
run;
You can change the label for the word 'Mean' is you prefer.
... View more