Create RTF output that uses the default paneling. The ODS TAGSETS.RTF statement opens the RTF destination and creates RTF output. Default paneling is used to print the TEMP data set that was created earlier in this program. The title of the table is "Default Paneling".


ods tagsets.rtf;
title "Default Paneling";
proc print data=Temp;
run;