<?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: How to create Hyper link in particular column of dataset in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-create-Hyper-link-in-particular-column-of-dataset/m-p/457217#M29459</link>
    <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;At last it worked for me. I have just removed&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;||".html"; &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="token punctuation"&gt;this part from the code, because my link was tiny link. For tiny link it was not working. For other link it will work.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="token punctuation"&gt;Thanks&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 25 Apr 2018 11:20:44 GMT</pubDate>
    <dc:creator>Sourav_sas</dc:creator>
    <dc:date>2018-04-25T11:20:44Z</dc:date>
    <item>
      <title>How to create Hyper link in particular column of dataset</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-create-Hyper-link-in-particular-column-of-dataset/m-p/457163#M29450</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have one situation. I have one dataset, in this dataset one column is there containing all links like&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture 1.JPG" style="width: 403px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/20108i1951DFA4A92D6E8D/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture 1.JPG" alt="Capture 1.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;When I am getting the output in excel or HTML from at from SAS code, I am getting the data in that particular column as normal data, but I need that data in Hyperlink format.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you help me how can I get that. What ods format I can use to get that. I need that code in PROC REPORT actually. To print the data I am using PROC REPORT.&lt;/P&gt;&lt;P&gt;Situation is little bit urgent, expecting quick help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sourav&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Apr 2018 06:23:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-create-Hyper-link-in-particular-column-of-dataset/m-p/457163#M29450</guid>
      <dc:creator>Sourav_sas</dc:creator>
      <dc:date>2018-04-25T06:23:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to create Hyper link in particular column of dataset</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-create-Hyper-link-in-particular-column-of-dataset/m-p/457184#M29452</link>
      <description>&lt;P&gt;It looks like you're missing the appropriate tags in your data set variable - this works for me, for example&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data test;
link = "&amp;lt;a href='https://www.sas.com/en_us/home.html'&amp;gt;SAS&amp;lt;/a&amp;gt;";
run;

ods html body="/folders/myshortcuts/Dropbox/test.html";
proc print data=test;
run;
ods html close;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 25 Apr 2018 08:34:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-create-Hyper-link-in-particular-column-of-dataset/m-p/457184#M29452</guid>
      <dc:creator>ChrisBrooks</dc:creator>
      <dc:date>2018-04-25T08:34:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to create Hyper link in particular column of dataset</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-create-Hyper-link-in-particular-column-of-dataset/m-p/457185#M29453</link>
      <description>&lt;P&gt;Thank&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using proc report there in my project. Anything you can suggest there. For that column. To get all the link from that column as hyperlink.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sourav&lt;/P&gt;</description>
      <pubDate>Wed, 25 Apr 2018 08:41:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-create-Hyper-link-in-particular-column-of-dataset/m-p/457185#M29453</guid>
      <dc:creator>Sourav_sas</dc:creator>
      <dc:date>2018-04-25T08:41:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to create Hyper link in particular column of dataset</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-create-Hyper-link-in-particular-column-of-dataset/m-p/457186#M29454</link>
      <description>&lt;P&gt;also in that column I have many links. How can I hyperlink that.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sourav&lt;/P&gt;</description>
      <pubDate>Wed, 25 Apr 2018 08:46:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-create-Hyper-link-in-particular-column-of-dataset/m-p/457186#M29454</guid>
      <dc:creator>Sourav_sas</dc:creator>
      <dc:date>2018-04-25T08:46:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to create Hyper link in particular column of dataset</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-create-Hyper-link-in-particular-column-of-dataset/m-p/457193#M29455</link>
      <description>&lt;P&gt;I have used this code&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods html file="/var/opt/data/data_project/sas94/bire/redwh/data/tmp/temp.html" ; 

PROC REPORT DATA=FINAL_REPORT;

COLUMN DATA_DICT_LINK;

DEFINE DATA_DICT_LINK / DISPLAY "Wiki Link" ;

compute DATA_DICT_LINK ;

href=trim(DATA_DICT_LINK)||".html";

call define(_col_, "URL", href);

 

endcomp;

run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have tried with URLP and URB also but not getting the link in proper way, which been mentioned in side the column. I mean to say exact link is not opening. When clicking on that hyperlink from excel output.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regars&lt;/P&gt;&lt;P&gt;Sourav&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods html close;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Apr 2018 09:11:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-create-Hyper-link-in-particular-column-of-dataset/m-p/457193#M29455</guid>
      <dc:creator>Sourav_sas</dc:creator>
      <dc:date>2018-04-25T09:11:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to create Hyper link in particular column of dataset</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-create-Hyper-link-in-particular-column-of-dataset/m-p/457217#M29459</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;At last it worked for me. I have just removed&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;||".html"; &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="token punctuation"&gt;this part from the code, because my link was tiny link. For tiny link it was not working. For other link it will work.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="token punctuation"&gt;Thanks&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Apr 2018 11:20:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-create-Hyper-link-in-particular-column-of-dataset/m-p/457217#M29459</guid>
      <dc:creator>Sourav_sas</dc:creator>
      <dc:date>2018-04-25T11:20:44Z</dc:date>
    </item>
  </channel>
</rss>

