<?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: proc export with url coming from a column in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/proc-export-with-url-coming-from-a-column/m-p/934624#M83549</link>
    <description>&lt;P&gt;Why not create a HTML page? It's the natural language of the web.&lt;/P&gt;
&lt;P&gt;Please post usable example data.&lt;/P&gt;</description>
    <pubDate>Wed, 03 Jul 2024 20:41:01 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2024-07-03T20:41:01Z</dc:date>
    <item>
      <title>proc export with url coming from a column</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-export-with-url-coming-from-a-column/m-p/934622#M83548</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;i need some hep.&lt;/P&gt;
&lt;P&gt;what I have ==&amp;gt;this is my have_table with client number and the web site of the client for exmaple in the "url" column.&lt;/P&gt;
&lt;P&gt;what I would like to get ==&amp;gt; an excel file with the "client" colum and by cliquing on a client number, the web site of the corresponding client would open.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;result ==&amp;gt; I try this code but I do not succeed to make an url depending of the client (of the row).&lt;/P&gt;
&lt;P&gt;many thanks in adance for your help&lt;/P&gt;
&lt;P&gt;regards&lt;/P&gt;
&lt;P&gt;Nasser&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jul 2024 20:32:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-export-with-url-coming-from-a-column/m-p/934622#M83548</guid>
      <dc:creator>Nasser_DRMCP</dc:creator>
      <dc:date>2024-07-03T20:32:19Z</dc:date>
    </item>
    <item>
      <title>Re: proc export with url coming from a column</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-export-with-url-coming-from-a-column/m-p/934624#M83549</link>
      <description>&lt;P&gt;Why not create a HTML page? It's the natural language of the web.&lt;/P&gt;
&lt;P&gt;Please post usable example data.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jul 2024 20:41:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-export-with-url-coming-from-a-column/m-p/934624#M83549</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2024-07-03T20:41:01Z</dc:date>
    </item>
    <item>
      <title>Re: proc export with url coming from a column</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-export-with-url-coming-from-a-column/m-p/934627#M83550</link>
      <description>&lt;P&gt;Use PROC REPORT with ODS EXCEL instead.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;See Page 7 in this paper for a code example&amp;nbsp;&lt;A href="https://support.sas.com/resources/papers/proceedings18/2479-2018.pdf" target="_blank"&gt;https://support.sas.com/resources/papers/proceedings18/2479-2018.pdf&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/147725"&gt;@Nasser_DRMCP&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;i need some hep.&lt;/P&gt;
&lt;P&gt;what I have ==&amp;gt;this is my have_table with client number and the web site of the client for exmaple in the "url" column.&lt;/P&gt;
&lt;P&gt;what I would like to get ==&amp;gt; an excel file with the "client" colum and by cliquing on a client number, the web site of the corresponding client would open.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;result ==&amp;gt; I try this code but I do not succeed to make an url depending of the client (of the row).&lt;/P&gt;
&lt;P&gt;many thanks in adance for your help&lt;/P&gt;
&lt;P&gt;regards&lt;/P&gt;
&lt;P&gt;Nasser&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jul 2024 20:51:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-export-with-url-coming-from-a-column/m-p/934627#M83550</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2024-07-03T20:51:59Z</dc:date>
    </item>
    <item>
      <title>Re: proc export with url coming from a column</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-export-with-url-coming-from-a-column/m-p/934643#M83551</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input id $ url :$40.;
cards;
1234 http://www.sas.com
4321 http://www.nasa.gov
;

ods excel file='c:\temp\want.xlsx';
proc report data=have nowd;
column url id ;
define url/display noprint;
define id/display ;
compute id;
call define(_col_,'url',url);
call define(_col_,'style','style={foreground=blue textdecoration=underline hreftarget="_blank"}');
endcomp;
run;
ods excel close;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 04 Jul 2024 01:28:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-export-with-url-coming-from-a-column/m-p/934643#M83551</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2024-07-04T01:28:59Z</dc:date>
    </item>
    <item>
      <title>Re: proc export with url coming from a column</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/proc-export-with-url-coming-from-a-column/m-p/934659#M83552</link>
      <description>MANY THANKS !!!</description>
      <pubDate>Thu, 04 Jul 2024 08:11:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/proc-export-with-url-coming-from-a-column/m-p/934659#M83552</guid>
      <dc:creator>Nasser_DRMCP</dc:creator>
      <dc:date>2024-07-04T08:11:28Z</dc:date>
    </item>
  </channel>
</rss>

