<?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: Ods makup to rtf report in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Ods-makup-to-rtf-report/m-p/870491#M42758</link>
    <description>&lt;P&gt;This is a follow-up to&amp;nbsp;&lt;A href="https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-markup-to-rtf/m-p/870123" target="_blank" rel="noopener"&gt;https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-markup-to-rtf/m-p/870123&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So you disguise HTML as RTF, but it is in fact targeted at Excel?&lt;/P&gt;
&lt;P&gt;Use ODS EXCEL.&lt;/P&gt;
&lt;P&gt;And if you need to accommodate multiple targets, open multiple destinations concurrently.&lt;/P&gt;</description>
    <pubDate>Wed, 19 Apr 2023 06:41:48 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2023-04-19T06:41:48Z</dc:date>
    <item>
      <title>Ods makup to rtf report</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Ods-makup-to-rtf-report/m-p/870487#M42757</link>
      <description>&lt;P&gt;proc template;&lt;BR /&gt;define tagset tagsets.test;&lt;BR /&gt;parent=tagsets.phtml;&lt;BR /&gt;define event doc;&lt;BR /&gt;start:&lt;BR /&gt;put HTMLDOCTYPE NL NL NL;&lt;BR /&gt;put '&amp;lt;html xmlns:o="urn:schemas-microsoft-com:office:office"' NL;&lt;BR /&gt;put 'xmlns:x="urn:schemas-microsoft-com:office:excel"' NL;&lt;BR /&gt;put 'xmlns="&lt;A href="http://www.w3.org/TR/REC-html40" target="_blank" rel="nofollow noopener noreferrer"&gt;http://www.w3.org/TR/REC-html40&lt;/A&gt;"&amp;gt;' NL;&lt;BR /&gt;&lt;BR /&gt;finish:&lt;BR /&gt;put "&amp;lt;/html&amp;gt;" NL;&lt;BR /&gt;end;&lt;BR /&gt;&lt;BR /&gt;define event doc_head;&lt;BR /&gt;start:&lt;BR /&gt;put "&amp;lt;head&amp;gt;" NL;&lt;BR /&gt;put VALUE NL;&lt;BR /&gt;put "&amp;lt;style&amp;gt;" NL "&amp;lt;!--" NL;&lt;BR /&gt;trigger alignstyle;&lt;BR /&gt;put "--&amp;gt;" NL "&amp;lt;/style&amp;gt;" NL;&lt;BR /&gt;finish:&lt;BR /&gt;&lt;BR /&gt;put " &amp;lt;!--[if gte mso 9]&amp;gt;&amp;lt;xml&amp;gt;" NL;&lt;BR /&gt;put " &amp;lt;x:ExcelWorkbook&amp;gt;" NL;&lt;BR /&gt;put " &amp;lt;x:ExcelWorksheets&amp;gt;" NL;&lt;BR /&gt;put " &amp;lt;x:ExcelWorksheet&amp;gt;" NL;&lt;BR /&gt;put " &amp;lt;x:Name&amp;gt;Sheet1&amp;lt;/x:Name&amp;gt;" NL;&lt;BR /&gt;put " &amp;lt;x:WorksheetOptions&amp;gt;" NL;&lt;BR /&gt;put " &amp;lt;x:Zoom&amp;gt;100&amp;lt;/x:Zoom&amp;gt;" NL;&lt;BR /&gt;put " &amp;lt;x:Selected/&amp;gt;" NL;&lt;BR /&gt;put " &amp;lt;x:Panes&amp;gt;" NL;&lt;BR /&gt;put " &amp;lt;x:Pane&amp;gt;" NL;&lt;BR /&gt;put " &amp;lt;x:Number&amp;gt;3&amp;lt;/x:Number&amp;gt;" NL;&lt;BR /&gt;put " &amp;lt;x:ActiveCol&amp;gt;1&amp;lt;/x:ActiveCol&amp;gt;" NL;&lt;BR /&gt;put " &amp;lt;/x:Pane&amp;gt;" NL;&lt;BR /&gt;put " &amp;lt;/x:Panes&amp;gt;" NL;&lt;BR /&gt;put " &amp;lt;x:ProtectContents&amp;gt;False&amp;lt;/x:ProtectContents&amp;gt;" NL;&lt;BR /&gt;put " &amp;lt;x:ProtectObjects&amp;gt;False&amp;lt;/x:ProtectObjects&amp;gt;" NL;&lt;BR /&gt;put " &amp;lt;x:ProtectScenarios&amp;gt;False&amp;lt;/x:ProtectScenarios&amp;gt;" NL;&lt;BR /&gt;put " &amp;lt;/x:WorksheetOptions&amp;gt;" NL;&lt;BR /&gt;put " &amp;lt;/x:ExcelWorksheet&amp;gt; " NL;&lt;BR /&gt;put " &amp;lt;x:WindowHeight&amp;gt;8070&amp;lt;/x:WindowHeight&amp;gt; " NL;&lt;BR /&gt;put " &amp;lt;x:WindowWidth&amp;gt;10380&amp;lt;/x:WindowWidth&amp;gt; " NL;&lt;BR /&gt;put " &amp;lt;x:WindowTopX&amp;gt;480&amp;lt;/x:WindowTopX&amp;gt; " NL;&lt;BR /&gt;put " &amp;lt;x:WindowTopY&amp;gt;120&amp;lt;/x:WindowTopY&amp;gt; " NL;&lt;BR /&gt;put " &amp;lt;x:ProtectStructure&amp;gt;False&amp;lt;/x:ProtectStructure&amp;gt; " NL;&lt;BR /&gt;put " &amp;lt;x:ProtectWindows&amp;gt;False&amp;lt;/x:ProtectWindows&amp;gt;" NL;&lt;BR /&gt;put " &amp;lt;/x:ExcelWorkbook&amp;gt;" NL;&lt;BR /&gt;put " &amp;lt;/xml&amp;gt;&amp;lt;![endif]--&amp;gt; " NL;&lt;BR /&gt;put "&amp;lt;/head&amp;gt;" NL;&lt;BR /&gt;end;&lt;BR /&gt;end;&lt;BR /&gt;run;&lt;BR /&gt;proc template;&lt;BR /&gt;define style styles.mystyle;&lt;BR /&gt;parent = Styles.Default;&lt;BR /&gt;style body /&lt;BR /&gt;background = white&lt;BR /&gt;foreground = black&lt;BR /&gt;;&lt;BR /&gt;style systemtitle /&lt;BR /&gt;font_face = 'Times New Roman'&lt;BR /&gt;font_weight = bold&lt;BR /&gt;font_size = 12pt&lt;BR /&gt;;&lt;BR /&gt;style systemfooter /&lt;BR /&gt;font_face = 'Times New Roman'&lt;BR /&gt;font_size = 8pt&lt;BR /&gt;;&lt;BR /&gt;style data /&lt;BR /&gt;fontfamily = 'Times New Roman'&lt;BR /&gt;font_size = 10pt&lt;BR /&gt;foreground = black&lt;BR /&gt;;&lt;BR /&gt;style header /&lt;BR /&gt;fontfamily = 'Times New Roman'&lt;BR /&gt;font_size = 10pt&lt;BR /&gt;foreground = Black&lt;BR /&gt;/* font_weight = bold */&lt;BR /&gt;/* background = #A9D0F5 */&lt;BR /&gt;background = white&lt;BR /&gt;;&lt;/P&gt;
&lt;P&gt;style summary /&lt;BR /&gt;fontfamily = 'Times New Roman'&lt;BR /&gt;font_size = 10pt&lt;BR /&gt;foreground = Black&lt;BR /&gt;font_weight = bold&lt;BR /&gt;/* background = #A9D0F5 */&lt;BR /&gt;background = white&lt;BR /&gt;;&lt;/P&gt;
&lt;P&gt;style table /&lt;BR /&gt;cellpadding = 5px&lt;BR /&gt;cellspacing = 0px&lt;BR /&gt;borderwidth = 1px&lt;BR /&gt;bordercolor = black&lt;BR /&gt;borderstyle = solid&lt;BR /&gt;;&lt;BR /&gt;end;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;ods markup file="sas.rtf" tagset=tagsets.test alias='normal' style=mystyle;&lt;BR /&gt;title1 "Data Set";&lt;BR /&gt;proc report data=sashelp.cars(obs=5);&lt;BR /&gt;col Make Model Type Origin DriveTrain;&lt;/P&gt;
&lt;P&gt;run;&lt;BR /&gt;title1;&lt;/P&gt;
&lt;P&gt;title2 "Data Set1";&lt;/P&gt;
&lt;P&gt;proc report data=sashelp.class (obs=5);&lt;BR /&gt;run;&lt;BR /&gt;title2;&lt;BR /&gt;ods rtf close;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I want to two report seperate page start&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Daily1_0-1681884252054.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/82835iDC7B50709A3EC952/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Daily1_0-1681884252054.png" alt="Daily1_0-1681884252054.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Apr 2023 06:06:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Ods-makup-to-rtf-report/m-p/870487#M42757</guid>
      <dc:creator>Daily1</dc:creator>
      <dc:date>2023-04-19T06:06:59Z</dc:date>
    </item>
    <item>
      <title>Re: Ods makup to rtf report</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Ods-makup-to-rtf-report/m-p/870491#M42758</link>
      <description>&lt;P&gt;This is a follow-up to&amp;nbsp;&lt;A href="https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-markup-to-rtf/m-p/870123" target="_blank" rel="noopener"&gt;https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-markup-to-rtf/m-p/870123&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So you disguise HTML as RTF, but it is in fact targeted at Excel?&lt;/P&gt;
&lt;P&gt;Use ODS EXCEL.&lt;/P&gt;
&lt;P&gt;And if you need to accommodate multiple targets, open multiple destinations concurrently.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Apr 2023 06:41:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Ods-makup-to-rtf-report/m-p/870491#M42758</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2023-04-19T06:41:48Z</dc:date>
    </item>
  </channel>
</rss>

