<?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: URL in spanned headers of proc report in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/URL-in-spanned-headers-of-proc-report/m-p/854369#M26153</link>
    <description>&lt;PRE class=""&gt;&lt;SPAN class=""&gt;Hello,
Is there a way to do the 2nd example in an ods excel?&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 18 Jan 2023 16:27:01 GMT</pubDate>
    <dc:creator>sasuser_8</dc:creator>
    <dc:date>2023-01-18T16:27:01Z</dc:date>
    <item>
      <title>URL in spanned headers of proc report</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/URL-in-spanned-headers-of-proc-report/m-p/9013#M2899</link>
      <description>Hi all,&lt;BR /&gt;
&lt;BR /&gt;
I it possible to provide a url to my spanned headers on proc report .&lt;BR /&gt;
&lt;BR /&gt;
A sample code is as below&lt;BR /&gt;
&lt;BR /&gt;
proc report data = sashelp.class;&lt;BR /&gt;
columns ("character" name sex) ("numeric" age height weight);&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
i want a url to be added to the heders "character" &amp;amp;  "numeric". is this possible.&lt;BR /&gt;
&lt;BR /&gt;
Please do guide.</description>
      <pubDate>Wed, 08 Jun 2011 06:55:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/URL-in-spanned-headers-of-proc-report/m-p/9013#M2899</guid>
      <dc:creator>NN</dc:creator>
      <dc:date>2011-06-08T06:55:24Z</dc:date>
    </item>
    <item>
      <title>Re: URL in spanned headers of proc report</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/URL-in-spanned-headers-of-proc-report/m-p/9014#M2900</link>
      <description>[pre]&lt;BR /&gt;
&lt;BR /&gt;
proc format;&lt;BR /&gt;
 value $ fmt&lt;BR /&gt;
         'character','numeric'='www.sas.com'&lt;BR /&gt;
         ;&lt;BR /&gt;
run;&lt;BR /&gt;
ods html file='c:\temp\certain_order.html' style=sasweb;&lt;BR /&gt;
&lt;BR /&gt;
proc report data = sashelp.class style(header)={url=$fmt.} nowd;&lt;BR /&gt;
columns ("character" name sex) ("numeric" age height weight);&lt;BR /&gt;
run;&lt;BR /&gt;
ods html close;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Or&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
[pre]&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
ods html file='c:\temp\certain_order.html' style=sasweb;&lt;BR /&gt;
ods escapechar='~';&lt;BR /&gt;
proc report data = sashelp.class nowd;&lt;BR /&gt;
columns ("~S={url='www.sas.com'} character" name sex) ("~S={url='www.sas.com'} numeric" age height weight);&lt;BR /&gt;
run;&lt;BR /&gt;
ods html close;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Ksharp

Message was edited by: Ksharp</description>
      <pubDate>Wed, 08 Jun 2011 08:38:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/URL-in-spanned-headers-of-proc-report/m-p/9014#M2900</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2011-06-08T08:38:54Z</dc:date>
    </item>
    <item>
      <title>Re: URL in spanned headers of proc report</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/URL-in-spanned-headers-of-proc-report/m-p/9015#M2901</link>
      <description>Thank a ton... This helps a lot....</description>
      <pubDate>Wed, 08 Jun 2011 08:44:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/URL-in-spanned-headers-of-proc-report/m-p/9015#M2901</guid>
      <dc:creator>NN</dc:creator>
      <dc:date>2011-06-08T08:44:39Z</dc:date>
    </item>
    <item>
      <title>Re: URL in spanned headers of proc report</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/URL-in-spanned-headers-of-proc-report/m-p/854369#M26153</link>
      <description>&lt;PRE class=""&gt;&lt;SPAN class=""&gt;Hello,
Is there a way to do the 2nd example in an ods excel?&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Jan 2023 16:27:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/URL-in-spanned-headers-of-proc-report/m-p/854369#M26153</guid>
      <dc:creator>sasuser_8</dc:creator>
      <dc:date>2023-01-18T16:27:01Z</dc:date>
    </item>
    <item>
      <title>Re: URL in spanned headers of proc report</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/URL-in-spanned-headers-of-proc-report/m-p/854386#M26154</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/438581"&gt;@sasuser_8&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;PRE class=""&gt;&lt;SPAN class=""&gt;Hello,
Is there a way to do the 2nd example in an ods excel?&lt;/SPAN&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Suggestion: Start your own thread, mention this one (copy and paste URL of the page), provide some example of your data, as data step code, and your Proc Report using that data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Data as a data step is so everyone sees the same thing and we have something to test code with. Your report code is so it easier to show exactly where you would change things. Best would also be how you intend to have the output sent to Excel. There are several methods and different options are available for each.&lt;/P&gt;
&lt;P&gt;The text boxes, opened using the &amp;lt;/&amp;gt; icon, are best for code or log entries as they prevent the main message windows from reformatting text. Basic questions and description text should be in the window.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Jan 2023 17:37:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/URL-in-spanned-headers-of-proc-report/m-p/854386#M26154</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2023-01-18T17:37:26Z</dc:date>
    </item>
  </channel>
</rss>

