<?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: across variable in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/across-variable/m-p/7446#M2743</link>
    <description>i want the across variable should be underlined in the ods style=journal</description>
    <pubDate>Tue, 18 Mar 2008 09:33:37 GMT</pubDate>
    <dc:creator>deleted_user</dc:creator>
    <dc:date>2008-03-18T09:33:37Z</dc:date>
    <item>
      <title>across variable</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/across-variable/m-p/7442#M2739</link>
      <description>how to generate the line below across variable as below in ods pdf.&lt;BR /&gt;
ex;&lt;BR /&gt;
                                      sex&lt;BR /&gt;
                           ________________________&lt;BR /&gt;
                   male          female    other</description>
      <pubDate>Thu, 13 Mar 2008 12:54:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/across-variable/m-p/7442#M2739</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-03-13T12:54:06Z</dc:date>
    </item>
    <item>
      <title>Re: across variable</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/across-variable/m-p/7443#M2740</link>
      <description>Which procedure please? &lt;BR /&gt;
Show your code!</description>
      <pubDate>Thu, 13 Mar 2008 13:27:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/across-variable/m-p/7443#M2740</guid>
      <dc:creator>Andre</dc:creator>
      <dc:date>2008-03-13T13:27:30Z</dc:date>
    </item>
    <item>
      <title>Re: across variable</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/across-variable/m-p/7444#M2741</link>
      <description>I need it using Proc Report</description>
      <pubDate>Thu, 13 Mar 2008 14:01:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/across-variable/m-p/7444#M2741</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-03-13T14:01:20Z</dc:date>
    </item>
    <item>
      <title>Re: across variable</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/across-variable/m-p/7445#M2742</link>
      <description>Sivas,&lt;BR /&gt;
&lt;BR /&gt;
When I look at an across variable in PDF, what I see is that the variable is in its own cell surrounded by borders on all 4 sides. What do you want that's different from this? Do you want the variable name underlined?&lt;BR /&gt;
[pre]&lt;BR /&gt;
+---------------------------------------------+&lt;BR /&gt;
|                   Sex                       |&lt;BR /&gt;
+---------------------------------------------+&lt;BR /&gt;
|       M       |       F      |  Other       |&lt;BR /&gt;
+---------------------------------------------+&lt;BR /&gt;
[/pre]&lt;BR /&gt;
I'm using SAS 9.1.3 SP4 with the default style.</description>
      <pubDate>Thu, 13 Mar 2008 18:48:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/across-variable/m-p/7445#M2742</guid>
      <dc:creator>Tim_SAS</dc:creator>
      <dc:date>2008-03-13T18:48:43Z</dc:date>
    </item>
    <item>
      <title>Re: across variable</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/across-variable/m-p/7446#M2743</link>
      <description>i want the across variable should be underlined in the ods style=journal</description>
      <pubDate>Tue, 18 Mar 2008 09:33:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/across-variable/m-p/7446#M2743</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-03-18T09:33:37Z</dc:date>
    </item>
    <item>
      <title>Re: across variable</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/across-variable/m-p/7447#M2744</link>
      <description>Hi:&lt;BR /&gt;
  Here's some sample code for RTF and HTML. Right now, these are the only destinations where you can underline. I don't think you'll be able to underline in PDF until SAS 9.2.&lt;BR /&gt;
&lt;BR /&gt;
cynthia&lt;BR /&gt;
[pre]&lt;BR /&gt;
ods listing close;&lt;BR /&gt;
ods rtf file='ul.rtf' style=journal;&lt;BR /&gt;
title font='Arial' h=14pt 'Using PROC REPORT and RTF control string';&lt;BR /&gt;
   &lt;BR /&gt;
proc report data=sashelp.class nowd &lt;BR /&gt;
  style(header)={protectspecialchars=off};&lt;BR /&gt;
  column ('\ul Span Header' name age height);&lt;BR /&gt;
run;&lt;BR /&gt;
ods rtf close;&lt;BR /&gt;
    &lt;BR /&gt;
ods html file='ul.html' style=sasweb;&lt;BR /&gt;
ods escapechar='#';&lt;BR /&gt;
proc report data=sashelp.class nowd ;&lt;BR /&gt;
  title font='Arial' h=14pt  'PROC REPORT and CSS style property';&lt;BR /&gt;
  column ('#S={htmlstyle="text-decoration: underline;"}Span Header' &lt;BR /&gt;
          name age height);&lt;BR /&gt;
run;&lt;BR /&gt;
   &lt;BR /&gt;
ods html close;&lt;BR /&gt;
title;&lt;BR /&gt;
[/pre]</description>
      <pubDate>Tue, 18 Mar 2008 14:24:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/across-variable/m-p/7447#M2744</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2008-03-18T14:24:44Z</dc:date>
    </item>
  </channel>
</rss>

