<?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: draw a line and blank before date in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/draw-a-line-and-blank-before-date/m-p/598718#M23413</link>
    <description>&lt;P&gt;Hi:&lt;BR /&gt;That is a mix of syntax. The ^R is SAS syntax -- using ODS ESCAPECHAR to pass "raw" control strings to a destination. The "raw" capability can pass HTML tags or RTF control strings to their respective destinations. what comes after the ^R is an RTF control string. You'd look that up in an RTF reference like this one: &lt;A href="http://www.biblioscape.com/rtf15_spec.htm" target="_blank" rel="noopener"&gt;http://www.biblioscape.com/rtf15_spec.htm&lt;/A&gt; or an O'Reilly book on RTF.&lt;BR /&gt;Hope this helps,&lt;BR /&gt;Cynthia&lt;BR /&gt;(PS -- this was pre 9.2 syntax for ^R -- the syntax has changed for ODS ESCAPECHAR since I wrote this paper: &lt;A href="https://support.sas.com/resources/papers/proceedings/proceedings/forum2007/099-2007.pdf" target="_blank" rel="noopener"&gt;https://support.sas.com/resources/papers/proceedings/proceedings/forum2007/099-2007.pdf&lt;/A&gt;)&lt;/P&gt;</description>
    <pubDate>Wed, 23 Oct 2019 14:08:48 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2019-10-23T14:08:48Z</dc:date>
    <item>
      <title>draw a line and blank before date</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/draw-a-line-and-blank-before-date/m-p/598597#M23411</link>
      <description>&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="4"&gt;Hi guys ,&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="4"&gt;I saw this code somewhere when we do ODS rtf, it is really does the job, but I don't know why and how.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="4"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial black,avant garde" size="4"&gt;%let topbrdr = ^R'\brdrt\brdrs\brdrw10';&amp;nbsp; &amp;nbsp; &amp;nbsp; /*draw a line on top of footnote*/&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial black,avant garde" size="4"&gt;footnote4 j=left "&amp;amp;topbrdr Program Name xxx ooo";&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="4"&gt;the other one is&amp;nbsp;&amp;nbsp;&lt;FONT face="arial black,avant garde" size="4"&gt;"^R'\li380'"&amp;nbsp;&lt;FONT face="arial,helvetica,sans-serif"&gt; in the following code;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial black,avant garde" size="4"&gt;data final;&lt;BR /&gt;set all;&lt;BR /&gt;&lt;BR /&gt;if ord ne 1 then print="^R'\li380'"||trim(left(stat));&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;/*add blank before stat*/&lt;BR /&gt;else print = trim(left(stat));&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial black,avant garde" size="4"&gt;&lt;BR /&gt;run;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial, helvetica, sans-serif"&gt;if i give a bigger number than 380, then add more blank before stat;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="4"&gt;my question is where I can find information about this&amp;nbsp;&lt;FONT face="arial black,avant garde" size="4"&gt;&amp;nbsp;&lt;/FONT&gt;?&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;any idea ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you very much.&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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Oct 2019 03:50:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/draw-a-line-and-blank-before-date/m-p/598597#M23411</guid>
      <dc:creator>Zhenbin</dc:creator>
      <dc:date>2019-10-23T03:50:11Z</dc:date>
    </item>
    <item>
      <title>Re: draw a line and blank before date</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/draw-a-line-and-blank-before-date/m-p/598718#M23413</link>
      <description>&lt;P&gt;Hi:&lt;BR /&gt;That is a mix of syntax. The ^R is SAS syntax -- using ODS ESCAPECHAR to pass "raw" control strings to a destination. The "raw" capability can pass HTML tags or RTF control strings to their respective destinations. what comes after the ^R is an RTF control string. You'd look that up in an RTF reference like this one: &lt;A href="http://www.biblioscape.com/rtf15_spec.htm" target="_blank" rel="noopener"&gt;http://www.biblioscape.com/rtf15_spec.htm&lt;/A&gt; or an O'Reilly book on RTF.&lt;BR /&gt;Hope this helps,&lt;BR /&gt;Cynthia&lt;BR /&gt;(PS -- this was pre 9.2 syntax for ^R -- the syntax has changed for ODS ESCAPECHAR since I wrote this paper: &lt;A href="https://support.sas.com/resources/papers/proceedings/proceedings/forum2007/099-2007.pdf" target="_blank" rel="noopener"&gt;https://support.sas.com/resources/papers/proceedings/proceedings/forum2007/099-2007.pdf&lt;/A&gt;)&lt;/P&gt;</description>
      <pubDate>Wed, 23 Oct 2019 14:08:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/draw-a-line-and-blank-before-date/m-p/598718#M23413</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2019-10-23T14:08:48Z</dc:date>
    </item>
    <item>
      <title>Re: draw a line and blank before date</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/draw-a-line-and-blank-before-date/m-p/598883#M23415</link>
      <description>Thank you for your reply,Cynthia.</description>
      <pubDate>Thu, 24 Oct 2019 01:15:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/draw-a-line-and-blank-before-date/m-p/598883#M23415</guid>
      <dc:creator>Zhenbin</dc:creator>
      <dc:date>2019-10-24T01:15:22Z</dc:date>
    </item>
  </channel>
</rss>

