<?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 RTF Tagset Free text justification in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-Tagset-Free-text-justification/m-p/114498#M10164</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Cynthia,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I probably misled you by saying it is a report. Actually we are trying to add text in between procs (freqs, reports, tabulates etc) and we had to use the ODS RTF Tagset to control the spacing in between those procs. When we did that the in line formatting stopped working so we were looking for a in line formatting for ODS RTF Tagset text= option.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 20 Feb 2013 11:07:15 GMT</pubDate>
    <dc:creator>esjackso</dc:creator>
    <dc:date>2013-02-20T11:07:15Z</dc:date>
    <item>
      <title>ODS RTF Tagset Free text justification</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-Tagset-Free-text-justification/m-p/114494#M10160</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I was wondering if anyone has been able to use ODS RTF Tagset to control the justification of text in a report. The in line formating code doesn't seem to alter the results. If anyone can provide an example it would be helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;EJ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Feb 2013 20:19:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-Tagset-Free-text-justification/m-p/114494#M10160</guid>
      <dc:creator>esjackso</dc:creator>
      <dc:date>2013-02-19T20:19:20Z</dc:date>
    </item>
    <item>
      <title>Re: ODS RTF Tagset Free text justification</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-Tagset-Free-text-justification/m-p/114495#M10161</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Below are some style elements for use with ODS RTF text I placed in macro variables as I was using them in multiple places and an example of how to apply to a string of text using the ODS ESCAPECHAR option.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;ods escapechar='^'; &lt;/P&gt;&lt;P&gt;%let tstyle1 = ^S={fontsize=16PT just=C leftmargin=1.0in rightmargin=1.0in} ; /*section titles*/ &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%let tstyle2 = ^S={fontsize=12PT just=C leftmargin=1.0in rightmargin=1.0in} ; /* Main title */ &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%let tstyle3 = ^S={fontsize=10PT just=C leftmargin=1.0in rightmargin=1.0in} ; /* secondary title */ &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%let tstyle4 = ^S={fontsize=12PT just=L fontweight=MEDIUM leftmargin=1.0in rightmargin=1.0in} ; /*Body text */ &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%let tstyle5 = ^S={fontsize=12PT just=L fontweight=BOLD leftmargin=1.0in rightmargin=1.0in} ; /*Body text bold*/ &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%let tindent = ^S={fontsize=12PT fontweight=MEDIUM leftmargin=1.5in rightmargin=1.0in} ; /*Body text indented*/ &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%let tindent2= ^S={fontsize=12PT fontweight=MEDIUM leftmargin=2.in rightmargin=1.0in} ; /*Body text indented 2nd level*/ &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%let tstyle7 = ^S={fontsize= 8PT just=L fontweight=MEDIUM leftmargin=1.0in rightmargin=1.0in} ; /*Footnote text*/ &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using one of the style to display a line of text using the line style I want. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods rtf text= "&amp;amp;l2style Some text I want withat style"; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Feb 2013 21:50:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-Tagset-Free-text-justification/m-p/114495#M10161</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2013-02-19T21:50:05Z</dc:date>
    </item>
    <item>
      <title>Re: ODS RTF Tagset Free text justification</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-Tagset-Free-text-justification/m-p/114496#M10162</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt;In addition to using ODS RTF TEXT= or just ODS TEXT=, you can achieve justification in the columns in a report by using STYLE= overrides. If you run the code below, you should see a marked difference between the justification in #1 and the justification for each column in #2. I made the cells big enough to see the difference.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;data testit(keep=name bigtext bigtext2);&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; set sashelp.class(obs=2);&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; length bigtext bigtext2 $400;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; bigtext = "Twas brillig and the slithy toves "||&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&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; "did gyre and gimble in the wabe. "||&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&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; "All mimsy were the borogroves "||&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&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; "and the momeraths outgrabe. "||&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&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; "Beware the Jabberwock, my son!"||&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&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; "The jaws that bite, the claws that snatch!"||&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&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; "Beware the Jubjub bird and shun "||&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&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; "the frumious Bandersnatch!";&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; bigtext2 = bigtext;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; output;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: Courier New;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods rtf file='c:\temp\testit.rtf' ;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;proc report data=testit nowd;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; title '1) default just is left';&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; column name bigtext bigtext2;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; define name / order;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; define bigtext&amp;nbsp; / 'Text just=l'&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; style(column)={cellwidth=3in};&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; define bigtext2 / 'text just=l'&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; style(column)={cellwidth=3in};&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;run;&lt;/STRONG&gt;&lt;BR /&gt;&amp;nbsp; &lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;proc report data=testit nowd;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; title '2) changed just for each column';&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; column name bigtext bigtext2;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; define name / order;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; define bigtext&amp;nbsp; / 'Text just=r'&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; style(column)={cellwidth=3in just=r};&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; define bigtext2 / 'text just=c'&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; style(column)={cellwidth=3in just=c};&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;run;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods rtf close;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Feb 2013 00:20:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-Tagset-Free-text-justification/m-p/114496#M10162</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2013-02-20T00:20:18Z</dc:date>
    </item>
    <item>
      <title>Re: ODS RTF Tagset Free text justification</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-Tagset-Free-text-justification/m-p/114497#M10163</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have found that once we start using the ODS RTF Tagset to alter spacing between procs output, the standard in line formatting of ods rtf no longer works. So we were hoping that there was an answer using ODS RTF Tagset.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I really like this idea for other things. Its similar to having styles in word and can help standardize things in long reports.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EJ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Feb 2013 11:04:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-Tagset-Free-text-justification/m-p/114497#M10163</guid>
      <dc:creator>esjackso</dc:creator>
      <dc:date>2013-02-20T11:04:00Z</dc:date>
    </item>
    <item>
      <title>Re: ODS RTF Tagset Free text justification</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-Tagset-Free-text-justification/m-p/114498#M10164</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Cynthia,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I probably misled you by saying it is a report. Actually we are trying to add text in between procs (freqs, reports, tabulates etc) and we had to use the ODS RTF Tagset to control the spacing in between those procs. When we did that the in line formatting stopped working so we were looking for a in line formatting for ODS RTF Tagset text= option.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Feb 2013 11:07:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-RTF-Tagset-Free-text-justification/m-p/114498#M10164</guid>
      <dc:creator>esjackso</dc:creator>
      <dc:date>2013-02-20T11:07:15Z</dc:date>
    </item>
  </channel>
</rss>

