<?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: Adding a superscript number to a column heading in proc report in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Adding-a-superscript-number-to-a-column-heading-in-proc-report/m-p/937990#M26690</link>
    <description>&lt;P&gt;Are you expecting to see superscript in a LST file? Pretty sure Proc Printto only generates basic text for output directed to the listing destination which means all the ODS options like text color, background color, superscripts or subscripts are ignored.&lt;/P&gt;</description>
    <pubDate>Thu, 01 Aug 2024 16:49:21 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2024-08-01T16:49:21Z</dc:date>
    <item>
      <title>Adding a superscript number to a column heading in proc report</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Adding-a-superscript-number-to-a-column-heading-in-proc-report/m-p/937975#M26686</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Echo____0-1722526073117.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/98959iB676883A5B33149C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Echo____0-1722526073117.png" alt="Echo____0-1722526073117.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is what I want and this is my code which does not work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;proc printto new file="&amp;amp;outdir./&amp;amp;pgm..lst";&lt;/DIV&gt;&lt;DIV&gt;run;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;proc report data=final nowd missing headskip headline split='@' formchar(2)='_' out=test;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;column ("&amp;amp;tblline" expdur expdurc npct ptime);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;define expdur / display noprint;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;define expdurc / display 'Duration of exposure(*ESC*){super a}' width=26;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;define npct / display 'Persons@n (%)' center width=15;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;define ptime / display "Person time*{super b}" center width=15;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;compute after _page_;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;line @1 &amp;amp;stndrdls*'_';&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;line @1 "Abbreviations: NA=not applicable.";&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;line @1 "a Months defined in 30-day intervals (eg, 3 months=90 days).";&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;line @1 "b Person time=patient years of exposure (total exposure in days/360).";&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;line @1 "%=100 x n/Total, within each category.";&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;line @1 "Study included: D5985C00003.";&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;endcomp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;run;&lt;/DIV&gt;&lt;DIV&gt;proc printto print=print;&lt;/DIV&gt;&lt;DIV&gt;run;&lt;/DIV&gt;</description>
      <pubDate>Thu, 01 Aug 2024 15:29:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Adding-a-superscript-number-to-a-column-heading-in-proc-report/m-p/937975#M26686</guid>
      <dc:creator>Echo___</dc:creator>
      <dc:date>2024-08-01T15:29:07Z</dc:date>
    </item>
    <item>
      <title>Re: Adding a superscript number to a column heading in proc report</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Adding-a-superscript-number-to-a-column-heading-in-proc-report/m-p/937988#M26689</link>
      <description>&lt;P&gt;Works for output to PDF, EXCEL and HTML. Does not work for output to .LST. I didn't try ODS RTF.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Aug 2024 16:44:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Adding-a-superscript-number-to-a-column-heading-in-proc-report/m-p/937988#M26689</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2024-08-01T16:44:56Z</dc:date>
    </item>
    <item>
      <title>Re: Adding a superscript number to a column heading in proc report</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Adding-a-superscript-number-to-a-column-heading-in-proc-report/m-p/937990#M26690</link>
      <description>&lt;P&gt;Are you expecting to see superscript in a LST file? Pretty sure Proc Printto only generates basic text for output directed to the listing destination which means all the ODS options like text color, background color, superscripts or subscripts are ignored.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Aug 2024 16:49:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Adding-a-superscript-number-to-a-column-heading-in-proc-report/m-p/937990#M26690</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2024-08-01T16:49:21Z</dc:date>
    </item>
    <item>
      <title>Re: Adding a superscript number to a column heading in proc report</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Adding-a-superscript-number-to-a-column-heading-in-proc-report/m-p/938010#M26693</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 118px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/98966iBA1A13B92B30F15E/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;Super script 2 is hex 'B2'x on extended ASCII table.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Aug 2024 20:28:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Adding-a-superscript-number-to-a-column-heading-in-proc-report/m-p/938010#M26693</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2024-08-01T20:28:53Z</dc:date>
    </item>
  </channel>
</rss>

