execute multiple statements for a given condition #SAS
IF expression THEN DO; <executable statements> END; ELSE IF expression THEN DO; <executable statements> END; ELSE DO; <executable statements> END;