Basic SAS ODS title question – I’d like to have an overall document title for an ODS output. However, it always duplicates itself or suppresses the succeeding titles in the output. What is the proper way to note an overall document title without affecting the succeeding titles? None of the common suggestions accomplish this, such as: clearing the document title, adding ‘nogtitle’, ‘bodytitle’, ensuring succeeding title numbers, etc. One of many combinations I’ve tried is presented below – in this example the overall title appears multiple times – once above title 2 and then above title 3:
Title "Report of Monthly Sales";
title2 "Print of First Ten Observations of East Regional Sales";
Proc print data = eastregion (obs=10);
run;
title2;
title3 "Freq of East Regional Sales";
Proc freq data = eastregion;
tables region;
run;
title3;