<?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 ODS EXCEL Title in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-EXCEL-Title/m-p/361945#M18707</link>
    <description>&lt;P&gt;I'm trying to place a message above the table. &amp;nbsp;Is there a way to make the first sentence bold, but the following sentences not bold.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;title1 j=left lspace=0 height=10pt font="&amp;amp;font." color=red BOLD "WARNING THIS IS EXPLORATORY" NOTBOLD? "REST OF THE PARAGRAPH";&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also, I see that when the title is really long, about a typical paragraph, there is a decent white gap between the top of the speadsheet and where the message starts. &amp;nbsp;Any ideas on thi as well?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you!&lt;/P&gt;</description>
    <pubDate>Fri, 26 May 2017 13:06:08 GMT</pubDate>
    <dc:creator>dtchoi86</dc:creator>
    <dc:date>2017-05-26T13:06:08Z</dc:date>
    <item>
      <title>ODS EXCEL Title</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-EXCEL-Title/m-p/361945#M18707</link>
      <description>&lt;P&gt;I'm trying to place a message above the table. &amp;nbsp;Is there a way to make the first sentence bold, but the following sentences not bold.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;title1 j=left lspace=0 height=10pt font="&amp;amp;font." color=red BOLD "WARNING THIS IS EXPLORATORY" NOTBOLD? "REST OF THE PARAGRAPH";&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also, I see that when the title is really long, about a typical paragraph, there is a decent white gap between the top of the speadsheet and where the message starts. &amp;nbsp;Any ideas on thi as well?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Fri, 26 May 2017 13:06:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-EXCEL-Title/m-p/361945#M18707</guid>
      <dc:creator>dtchoi86</dc:creator>
      <dc:date>2017-05-26T13:06:08Z</dc:date>
    </item>
    <item>
      <title>Re: ODS EXCEL Title</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-EXCEL-Title/m-p/361947#M18708</link>
      <description>&lt;P&gt;Well, for your first question:&lt;/P&gt;
&lt;PRE&gt;title1 j=left lspace=0 height=10pt font="&amp;amp;font." color=red bold "WARNING THIS IS EXPLORATORY";
title2 ... "REST OF THE PARAGRAPH";&lt;/PRE&gt;
&lt;P&gt;You can have up to 10 titles. &amp;nbsp;If it was RTF you were outputting to then you could use inline tags to aid, but that doesn't work in tagsets.excelxp output.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For your second point, you seem to mistake what a title is. &amp;nbsp;A title is a shorter text to give some overview to a report. &amp;nbsp;If you plan to put out paragraphs of text then put that in a dataset and proc report it out with notab split, i.e. so all the text appears in one printout then your other output, but all as one sheet. &amp;nbsp;In fact, if your dealing with spreadsheets in general titles are a bit pointless - spreadsheets are not word procecessors.&lt;/P&gt;</description>
      <pubDate>Fri, 26 May 2017 13:14:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-EXCEL-Title/m-p/361947#M18708</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-05-26T13:14:56Z</dc:date>
    </item>
    <item>
      <title>Re: ODS EXCEL Title</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-EXCEL-Title/m-p/361969#M18710</link>
      <description>&lt;P&gt;I apologize, but could you provide reference or an example on the proc report notab split?&lt;/P&gt;</description>
      <pubDate>Fri, 26 May 2017 14:17:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-EXCEL-Title/m-p/361969#M18710</guid>
      <dc:creator>dtchoi86</dc:creator>
      <dc:date>2017-05-26T14:17:09Z</dc:date>
    </item>
    <item>
      <title>Re: ODS EXCEL Title</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-EXCEL-Title/m-p/361980#M18711</link>
      <description>&lt;P&gt;Its not the proc report but the ods options:&lt;/P&gt;
&lt;P&gt;You might even be able to do:&lt;/P&gt;
&lt;P&gt;ods tagsets.excelxp options(sheet_name="Sheet1");&lt;/P&gt;
&lt;P&gt;proc report data=text...;&lt;/P&gt;
&lt;P&gt;proc report data=your_data...;&lt;/P&gt;
&lt;P&gt;ods tagsets.excelxp options(sheet_name="Sheet2");&lt;/P&gt;
&lt;P&gt;...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Reference on options here:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.sas.com/rnd/base/ods/odsmarkup/excelxp_help.html" target="_blank"&gt;https://support.sas.com/rnd/base/ods/odsmarkup/excelxp_help.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 26 May 2017 14:53:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-EXCEL-Title/m-p/361980#M18711</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-05-26T14:53:05Z</dc:date>
    </item>
    <item>
      <title>Re: ODS EXCEL Title</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-EXCEL-Title/m-p/362092#M18716</link>
      <description>&lt;P&gt;You may want to consider that the Style used for your ODS output sets defaults for such things as title and footnote text appearance. If you use the same options repeatedly you may want to make a custom version of the style you use to set such things.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You may also want to use ODS Text instead of Title statements.&lt;/P&gt;</description>
      <pubDate>Fri, 26 May 2017 21:12:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-EXCEL-Title/m-p/362092#M18716</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2017-05-26T21:12:54Z</dc:date>
    </item>
    <item>
      <title>Re: ODS EXCEL Title</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-EXCEL-Title/m-p/362188#M18717</link>
      <description>&lt;P&gt;You could use PROC ODSTEXT.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ODS EXCEL FILE="/folders/myfolders/SAS Communities/add_titles_to_Excel.xlsx" 
  options(sheet_name="Use ODSTEXT"
          sheet_interval='none'
          embedded_titles='yes');

* h statement is new for PROC ODSTEXT in SAS 9.4M4. 
* but it does NOT show up in ODS EXCEL...;

proc odstext;
  *h "WARNING: THIS IS EXPLORATORY" / style=[color=red];
  p "WARNING: THIS IS EXPLORATORY." / style=[color=red font_weight=bold];
  p "Once the spreadsheet has passed the internal review procedures, it will be posted to the company internet site.";
  p "Please contact Jane Moneypenny for more details.  Thank you and have a nice day!";
run;

proc print data=sashelp.class;
run;

ODS EXCEL CLOSE;&lt;BR /&gt;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/9098iE717C16F6BAA1250/image-size/original?v=1.0&amp;amp;px=-1" border="0" alt="PROC ODSTEXT can add text to a spreadsheet.jpg" title="PROC ODSTEXT can add text to a spreadsheet.jpg" /&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 27 May 2017 15:57:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-EXCEL-Title/m-p/362188#M18717</guid>
      <dc:creator>SuzanneDorinski</dc:creator>
      <dc:date>2017-05-27T15:57:22Z</dc:date>
    </item>
  </channel>
</rss>

