<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Changing the title of a histogram, proc univariate, ods rtf in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-the-title-of-a-histogram-proc-univariate-ods-rtf/m-p/146540#M11442</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You're probably not on SAS 9.4 &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 05 May 2014 15:50:18 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2014-05-05T15:50:18Z</dc:date>
    <item>
      <title>Changing the title of a histogram, proc univariate, ods rtf</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-the-title-of-a-histogram-proc-univariate-ods-rtf/m-p/146526#M11428</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi to all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I recently switched to SAS v 9.4 and am now running on windows 8 64 bit. I am interested in changing the default title "Distribution of &lt;EM&gt;varname&lt;/EM&gt;" in my ODS output to a customized title including a macro variable name. I am referring to the title that is included IN the image of the histogram (under the title "the UNIVARIATE procedure"). I used to do this very primitively in version 9.3 by running the source code I found for Base.Univariate.Graphics.Comphistogram with a modified line for EntryTitle (i.e. my own title). Now that is not working, even when modifying and using the source code I found in v 9.4, possibly because I don't know what and how to change...&lt;/P&gt;&lt;P&gt;Could someone please help me with a solution?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All the best,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Mar 2014 15:00:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-the-title-of-a-histogram-proc-univariate-ods-rtf/m-p/146526#M11428</guid>
      <dc:creator>MichaelvanStraten</dc:creator>
      <dc:date>2014-03-17T15:00:15Z</dc:date>
    </item>
    <item>
      <title>Re: Changing the title of a histogram, proc univariate, ods rtf</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-the-title-of-a-histogram-proc-univariate-ods-rtf/m-p/146527#M11429</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;On the plus side, its become easier &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;&lt;P&gt;ODSTITLE option on your histogram statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data Trans;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; input Thick @@;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; label Thick = 'Plating Thickness (mils)';&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; datalines;&lt;/P&gt;&lt;P&gt;3.468 3.428 3.509 3.516 3.461 3.492 3.478 3.556 3.482 3.512&lt;/P&gt;&lt;P&gt;3.490 3.467 3.498 3.519 3.504 3.469 3.497 3.495 3.518 3.523&lt;/P&gt;&lt;P&gt;3.458 3.478 3.443 3.500 3.449 3.525 3.461 3.489 3.514 3.470&lt;/P&gt;&lt;P&gt;3.561 3.506 3.444 3.479 3.524 3.531 3.501 3.495 3.443 3.458&lt;/P&gt;&lt;P&gt;3.481 3.497 3.461 3.513 3.528 3.496 3.533 3.450 3.516 3.476&lt;/P&gt;&lt;P&gt;3.512 3.550 3.441 3.541 3.569 3.531 3.468 3.564 3.522 3.520&lt;/P&gt;&lt;P&gt;3.505 3.523 3.475 3.470 3.457 3.536 3.528 3.477 3.536 3.491&lt;/P&gt;&lt;P&gt;3.510 3.461 3.431 3.502 3.491 3.506 3.439 3.513 3.496 3.539&lt;/P&gt;&lt;P&gt;3.469 3.481 3.515 3.535 3.460 3.575 3.488 3.515 3.484 3.482&lt;/P&gt;&lt;P&gt;3.517 3.483 3.467 3.467 3.502 3.471 3.516 3.474 3.500 3.466&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;title 'Analysis of Plating Thickness';&lt;/P&gt;&lt;P&gt;ods graphics on;&lt;/P&gt;&lt;P&gt;proc univariate data=Trans noprint;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; histogram Thick/odstitle="Check this out";&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Mar 2014 15:15:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-the-title-of-a-histogram-proc-univariate-ods-rtf/m-p/146527#M11429</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2014-03-17T15:15:09Z</dc:date>
    </item>
    <item>
      <title>Re: Changing the title of a histogram, proc univariate, ods rtf</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-the-title-of-a-histogram-proc-univariate-ods-rtf/m-p/146528#M11430</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't see this option documented anywhere in the SAS 9.4 docs for PROC UNIVARIATE ... nor does it appear as an option for PROC UNIVARIATE when I search for the word ODSTITLE ... can you point me to where this is documented?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Mar 2014 16:06:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-the-title-of-a-histogram-proc-univariate-ods-rtf/m-p/146528#M11430</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2014-03-17T16:06:55Z</dc:date>
    </item>
    <item>
      <title>Re: Changing the title of a histogram, proc univariate, ods rtf</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-the-title-of-a-histogram-proc-univariate-ods-rtf/m-p/146529#M11431</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This was all I could find on it:&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/whatsnew/65742/HTML/default/viewer.htm#procstatwhatsnew93.htm" title="http://support.sas.com/documentation/cdl/en/whatsnew/65742/HTML/default/viewer.htm#procstatwhatsnew93.htm"&gt;What's New in SAS(R) 9.3 and SAS(R) Analytical Products 12.1&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I couldn't find it in the doc myself, which doesn't mean it isn't there. &lt;/P&gt;&lt;P&gt;It was posted a few weeks ago here&lt;/P&gt;&lt;P&gt;&lt;A __default_attr="196862" __jive_macro_name="message" class="jive_macro jive_macro_message" href="https://communities.sas.com/"&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Mar 2014 16:16:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-the-title-of-a-histogram-proc-univariate-ods-rtf/m-p/146529#M11431</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2014-03-17T16:16:53Z</dc:date>
    </item>
    <item>
      <title>Re: Changing the title of a histogram, proc univariate, ods rtf</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-the-title-of-a-histogram-proc-univariate-ods-rtf/m-p/146530#M11432</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot Reeza!&lt;/P&gt;&lt;P&gt;Worked like magic.&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Mar 2014 16:33:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-the-title-of-a-histogram-proc-univariate-ods-rtf/m-p/146530#M11432</guid>
      <dc:creator>MichaelvanStraten</dc:creator>
      <dc:date>2014-03-17T16:33:29Z</dc:date>
    </item>
    <item>
      <title>Re: Changing the title of a histogram, proc univariate, ods rtf</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-the-title-of-a-histogram-proc-univariate-ods-rtf/m-p/146531#M11433</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So if it is new in SAS 9.3, shouldn't it be in the docs for 9.4? (rhetorical question, I don't expect you to answer)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this something worth reporting as a bug? Not a software bug, but a documentation bug? Has anyone ever reported a documentation bug before? (not a rhetorical question, I am really curious if this should be reported)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Mar 2014 16:41:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-the-title-of-a-histogram-proc-univariate-ods-rtf/m-p/146531#M11433</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2014-03-17T16:41:33Z</dc:date>
    </item>
    <item>
      <title>Re: Changing the title of a histogram, proc univariate, ods rtf</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-the-title-of-a-histogram-proc-univariate-ods-rtf/m-p/146532#M11434</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My guess is that it's documented else where, such as a generic ODS Graphics section or such.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My searches only showed it on SAS/QC though. And it does have some interesting new options.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Mar 2014 16:59:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-the-title-of-a-histogram-proc-univariate-ods-rtf/m-p/146532#M11434</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2014-03-17T16:59:24Z</dc:date>
    </item>
    <item>
      <title>Re: Changing the title of a histogram, proc univariate, ods rtf</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-the-title-of-a-histogram-proc-univariate-ods-rtf/m-p/146533#M11435</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When I am in SAS and press F1, I can then do a text search of the entire SAS 9.4 docs (for the products I have licensed), and ODSTITLE shows up for SAS/QC PROCs only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I have decided to report this as a "bug". That's why they pay me the big bucks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Mar 2014 17:09:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-the-title-of-a-histogram-proc-univariate-ods-rtf/m-p/146533#M11435</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2014-03-17T17:09:02Z</dc:date>
    </item>
    <item>
      <title>Re: Changing the title of a histogram, proc univariate, ods rtf</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-the-title-of-a-histogram-proc-univariate-ods-rtf/m-p/146534#M11436</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt;&amp;nbsp; I found ODSTITLE and ODSFOOTNOTE documented for PROC UNIVARIATE, here&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/procstat/66703/HTML/default/viewer.htm#procstat_univariate_syntax09.htm" title="http://support.sas.com/documentation/cdl/en/procstat/66703/HTML/default/viewer.htm#procstat_univariate_syntax09.htm"&gt;Base SAS(R) 9.4 Procedures Guide: Statistical Procedures, Second Edition&lt;/A&gt; look for the options topic "Options for ODS Graphics Output".&lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Mar 2014 17:55:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-the-title-of-a-histogram-proc-univariate-ods-rtf/m-p/146534#M11436</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2014-03-17T17:55:11Z</dc:date>
    </item>
    <item>
      <title>Re: Changing the title of a histogram, proc univariate, ods rtf</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-the-title-of-a-histogram-proc-univariate-ods-rtf/m-p/146535#M11437</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I see that, thank you, Cynthia, however my concern is that the documentation is not consistent, and ODSTITLE for PROC UNIVARIATE is not searchable&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I use F1 in SAS to launch the local Help Application, click on Index, then go to "UNIVARIATE Procedure, HISTOGRAM Statement" and then click on Dictionary of Options, ODSTITLE simply isn't in the Dictionary of Options.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Similarly, if I click on Search and type in ODSTITLE, it should search the entire text of the local Help Application, and find all pages that contain ODSTITLE, but it does not find any PROC UNIVARIATE instances of ODSTITLE. Every example found is for SAS/QC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Mar 2014 18:02:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-the-title-of-a-histogram-proc-univariate-ods-rtf/m-p/146535#M11437</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2014-03-17T18:02:57Z</dc:date>
    </item>
    <item>
      <title>Re: Changing the title of a histogram, proc univariate, ods rtf</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-the-title-of-a-histogram-proc-univariate-ods-rtf/m-p/146536#M11438</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi:&lt;BR /&gt;When I look in the index, I do see ODSTITLE under the "common" plot statements. See the attached screen shots.&lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/11011i2DA32C42A645E03B/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="index_common_plot_doc.png" title="index_common_plot_doc.png" /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/11012iEE378B63B993B653/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="scroll_down_see_ODSTITLE.png" title="scroll_down_see_ODSTITLE.png" /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Mar 2014 20:30:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-the-title-of-a-histogram-proc-univariate-ods-rtf/m-p/146536#M11438</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2014-03-17T20:30:45Z</dc:date>
    </item>
    <item>
      <title>Re: Changing the title of a histogram, proc univariate, ods rtf</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-the-title-of-a-histogram-proc-univariate-ods-rtf/m-p/146537#M11439</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Cynthia&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I guess we have different philosophies here&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have no doubt that you, and probably others, can find the information we are discussing. The problem is that I cannot find it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Furthermore, when I want to find options that work for PROC UNIVARIATE HISTOGRAM statement, I think I should be able to go to PROC UNIVARIATE HISTOGRAM statement and find it, in the dictionary of options. I cannot find it there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think that instead of having to scroll down a long list of statements to find ODSTITLE, I should be able to type ODSTITLE into either the INDEX tab search or the SEARCH tab and have these searches find the information for me. But they do not find this information for me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My philosophy is that if I look in the expected places, and use the expected tools, that I get the expected results. My philosophy is NOT that I should have to have someone else find these things for me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By the way, I don't see anything here that resembles your screen capture entitled "scroll_down_see_ODSTITLE.png"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Mar 2014 20:40:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-the-title-of-a-histogram-proc-univariate-ods-rtf/m-p/146537#M11439</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2014-03-17T20:40:51Z</dc:date>
    </item>
    <item>
      <title>Re: Changing the title of a histogram, proc univariate, ods rtf</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-the-title-of-a-histogram-proc-univariate-ods-rtf/m-p/146538#M11440</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I agree, with the fact that its not showing up in searches.&lt;BR /&gt;Either online or via SAS.&amp;nbsp; Don't know where the bug is for that though. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Mar 2014 21:48:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-the-title-of-a-histogram-proc-univariate-ods-rtf/m-p/146538#M11440</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2014-03-17T21:48:12Z</dc:date>
    </item>
    <item>
      <title>Re: Changing the title of a histogram, proc univariate, ods rtf</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-the-title-of-a-histogram-proc-univariate-ods-rtf/m-p/146539#M11441</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi~ I tries, but it could not work.....Could you tell me how did you make it?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2014 15:36:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-the-title-of-a-histogram-proc-univariate-ods-rtf/m-p/146539#M11441</guid>
      <dc:creator>Tiny_Kane</dc:creator>
      <dc:date>2014-05-05T15:36:11Z</dc:date>
    </item>
    <item>
      <title>Re: Changing the title of a histogram, proc univariate, ods rtf</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-the-title-of-a-histogram-proc-univariate-ods-rtf/m-p/146540#M11442</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You're probably not on SAS 9.4 &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2014 15:50:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-the-title-of-a-histogram-proc-univariate-ods-rtf/m-p/146540#M11442</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2014-05-05T15:50:18Z</dc:date>
    </item>
    <item>
      <title>Re: Changing the title of a histogram, proc univariate, ods rtf</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-the-title-of-a-histogram-proc-univariate-ods-rtf/m-p/146541#M11443</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yep~ I am on SAS 9.3. I clicked the link you offered, it was &lt;A class="jive-link-external-small" href="http://support.sas.com/documentation/cdl/en/whatsnew/65742/HTML/default/viewer.htm#procstatwhatsnew93.htm"&gt;What's New in SAS(R) 9.3 and SAS(R) Analytical Products 12.1&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I thought SAS 9.3 worked too...But it was not...I am confused why they put the new feature into the above link....Anyway, thanks~&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2014 15:53:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-the-title-of-a-histogram-proc-univariate-ods-rtf/m-p/146541#M11443</guid>
      <dc:creator>Tiny_Kane</dc:creator>
      <dc:date>2014-05-05T15:53:53Z</dc:date>
    </item>
    <item>
      <title>Re: Changing the title of a histogram, proc univariate, ods rtf</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-the-title-of-a-histogram-proc-univariate-ods-rtf/m-p/146542#M11444</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My bad, it does say 9.3 so it should work. I just tested in on 9.3 and it does.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it isn't post your code and log.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2014 15:58:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-the-title-of-a-histogram-proc-univariate-ods-rtf/m-p/146542#M11444</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2014-05-05T15:58:28Z</dc:date>
    </item>
    <item>
      <title>Re: Changing the title of a histogram, proc univariate, ods rtf</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-the-title-of-a-histogram-proc-univariate-ods-rtf/m-p/146543#M11445</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ods graphics on;&lt;/P&gt;&lt;P&gt;proc univariate data=data noprint;&lt;/P&gt;&lt;P&gt;histogram teg_r_time/ odstitle="analysis of teg_r_time";&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;82&amp;nbsp;&amp;nbsp; ods graphics on;&lt;/P&gt;&lt;P&gt;83&amp;nbsp;&amp;nbsp; proc univariate data=data noprint;&lt;/P&gt;&lt;P&gt;84&amp;nbsp;&amp;nbsp; histogram teg_r_time/ odstitle="analysis of teg_r_time";&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; --------&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 22&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 76&lt;/P&gt;&lt;P&gt;ERROR 22-322: Syntax error, expecting one of the following: ;, ANNOKEY, ANNOTATE, BARLABEL,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; BARWIDTH, BETA, CAXIS, CBARLINE, CFILL, CFRAME, CFRAMESIDE, CFRAMETOP, CGRID,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CHREF, CLIPREF, CONTENTS, CPROP, CTEXT, CV, CVREF, DESCRIPTION, ENDPOINTS,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; EXPONENTIAL, FONT, FRONTREF, GAMMA, GRID, GUMBEL, HANGING, HAXIS, HEIGHT, HMINOR,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; HOFFSET, HREF, HREFLABELS, HREFLABPOS, IGAUSS, INFONT, INHEIGHT, INTERBAR,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; INTERTILE, KERNEL, LGRID, LHREF, LOGNORMAL, LVREF, MAXNBIN, MAXSIGMAS,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MIDPERCENTS, MIDPOINTS, NAME, NCOL, NCOLS, NENDPOINTS, NMIDPOINTS, NOBARS,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NOCHART, NOCURVELEGEND, NOFRAME, NOHLABEL, NOLEGEND, NOPLOT, NORMAL,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NOTABCONTENTS, NOVLABEL, NOVTICK, NROW, NROWS, OUTHISTOGRAM, OUTKERNEL, PARETO,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PFILL, POWER, RAYLEIGH, RTINCLUDE, SB, SU, TILELEGLABEL, TURNVLABELS, VAXIS,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; VAXISLABEL, VMINOR, VOFFSET, VREF, VREFLABELS, VREFLABPOS, VSCALE, WAXIS,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; WBARLINE, WEIBULL, WGRID.&lt;/P&gt;&lt;P&gt;ERROR 76-322: Syntax error, statement will be ignored.&lt;/P&gt;&lt;P&gt;85&amp;nbsp;&amp;nbsp; run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE UNIVARIATE used (Total process time):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; real time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cpu time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.00 seconds&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It seems like there is no this option......&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2014 18:25:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-the-title-of-a-histogram-proc-univariate-ods-rtf/m-p/146543#M11445</guid>
      <dc:creator>Tiny_Kane</dc:creator>
      <dc:date>2014-05-05T18:25:31Z</dc:date>
    </item>
    <item>
      <title>Re: Changing the title of a histogram, proc univariate, ods rtf</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-the-title-of-a-histogram-proc-univariate-ods-rtf/m-p/146544#M11446</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ods graphics on;&lt;/P&gt;&lt;P&gt;proc univariate data=sashelp.class noprint;&lt;/P&gt;&lt;P&gt;histogram weight/ odstitle = "Sample ODS output title";&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does that work for you?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If not I'll go back to the version issue, make sure you have STAT 12.1&lt;/P&gt;&lt;P&gt;ie I see the following in my log:&lt;/P&gt;&lt;P&gt;NOTE: This session is executing on the X64_7PRO&amp;nbsp; platform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NOTE: Enhanced analytical products:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAS/STAT 12.1, SAS/IML 12.1&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2014 19:22:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-the-title-of-a-histogram-proc-univariate-ods-rtf/m-p/146544#M11446</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2014-05-05T19:22:21Z</dc:date>
    </item>
    <item>
      <title>Re: Changing the title of a histogram, proc univariate, ods rtf</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-the-title-of-a-histogram-proc-univariate-ods-rtf/m-p/146545#M11447</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, it does not work.....Now, we got the reason....I may not have STAT 12.1.... Do you know how to check version detail? thanks~~~&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2014 20:53:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Changing-the-title-of-a-histogram-proc-univariate-ods-rtf/m-p/146545#M11447</guid>
      <dc:creator>Tiny_Kane</dc:creator>
      <dc:date>2014-05-05T20:53:37Z</dc:date>
    </item>
  </channel>
</rss>

