Print the merged report and specify the title. The PROC PRINT step prints the merged data set created from the DATA step. The output from this step is sent to the HTML destination.


The TITLE1 statement cancels the first title, and the TITLE2 statements specify a new title for the output.


title1;
title2 'The Merged Data Set Has Both Columns';
proc print data=summarym;
run;