Exclude output objects from different output destinations. The first ODS EXCLUDE statement excludes output objects from the HTML destination that have 'Diastolic' in the path name. The second ODS EXCLUDE statement excludes output objects from the PDF destination that have 'Systolic' in the path name.


ods html exclude where=(_path_ ? "Diastolic" ) ;
ods pdf exclude where=(_path_ ? "Systolic" ) ;