<?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 Hyperlink to the id in excel in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Hyperlink-to-the-id-in-excel/m-p/519627#M140778</link>
    <description>I have excel report with column id (1 , 2, 3...). I want to add a hyperlink to the id.&lt;BR /&gt;In proc report&lt;BR /&gt;Compute id;&lt;BR /&gt;Urlstring = ( I didn’t get this how to use the url and where?&lt;BR /&gt;Call define ;&lt;BR /&gt;Call define;&lt;BR /&gt;End compute;&lt;BR /&gt;&lt;BR /&gt;I have url like, http://www. Google .com/ test/?number=id&lt;BR /&gt;&lt;BR /&gt;Thank you</description>
    <pubDate>Sat, 08 Dec 2018 04:16:09 GMT</pubDate>
    <dc:creator>radha009</dc:creator>
    <dc:date>2018-12-08T04:16:09Z</dc:date>
    <item>
      <title>Hyperlink to the id in excel</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Hyperlink-to-the-id-in-excel/m-p/519627#M140778</link>
      <description>I have excel report with column id (1 , 2, 3...). I want to add a hyperlink to the id.&lt;BR /&gt;In proc report&lt;BR /&gt;Compute id;&lt;BR /&gt;Urlstring = ( I didn’t get this how to use the url and where?&lt;BR /&gt;Call define ;&lt;BR /&gt;Call define;&lt;BR /&gt;End compute;&lt;BR /&gt;&lt;BR /&gt;I have url like, http://www. Google .com/ test/?number=id&lt;BR /&gt;&lt;BR /&gt;Thank you</description>
      <pubDate>Sat, 08 Dec 2018 04:16:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Hyperlink-to-the-id-in-excel/m-p/519627#M140778</guid>
      <dc:creator>radha009</dc:creator>
      <dc:date>2018-12-08T04:16:09Z</dc:date>
    </item>
    <item>
      <title>Re: Hyperlink to the id in excel</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Hyperlink-to-the-id-in-excel/m-p/519636#M140786</link>
      <description>&lt;P&gt;A common topic - try this: &lt;A href="https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-EXCEL-Clickable-external-hyperlink/m-p/494468#M21677" target="_blank"&gt;https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-EXCEL-Clickable-external-hyperlink/m-p/494468#M21677&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 08 Dec 2018 05:25:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Hyperlink-to-the-id-in-excel/m-p/519636#M140786</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2018-12-08T05:25:14Z</dc:date>
    </item>
    <item>
      <title>Re: Hyperlink to the id in excel</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Hyperlink-to-the-id-in-excel/m-p/519657#M140797</link>
      <description>&lt;P&gt;my code :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods excel file='c:\test\hidelink.xlsx';&lt;BR /&gt;proc report data=work.project&lt;BR /&gt;column request release_id href;&lt;BR /&gt;define request / display;&lt;BR /&gt;define release_id /display;&lt;BR /&gt;define href / computed;&lt;/P&gt;&lt;P&gt;compute href / character length=100;&lt;BR /&gt;href = catt('&lt;A href="https://staff.contact.com/nav_to.do?uri=request.do?sysparm_query=number=',request" target="_blank"&gt;https://staff.contact.com/nav_to.do?uri=request.do?sysparm_query=number=',request&lt;/A&gt;);&lt;BR /&gt;call define('request','url',href);&lt;BR /&gt;endcomp;&lt;BR /&gt;run;&lt;BR /&gt;ods _all_ close;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the hyperlnk to the request is not displaying. when i click the request number it should go to the above link based on the reques number.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 08 Dec 2018 16:44:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Hyperlink-to-the-id-in-excel/m-p/519657#M140797</guid>
      <dc:creator>radha009</dc:creator>
      <dc:date>2018-12-08T16:44:20Z</dc:date>
    </item>
    <item>
      <title>Re: Hyperlink to the id in excel</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Hyperlink-to-the-id-in-excel/m-p/519687#M140807</link>
      <description>&lt;P&gt;As I understand it, to get a working hyperlink you need to wrap your URL in an Excel formula using the HYPERLINK function like so (example from above link):&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;      compute d1 ;
            IF d1='=HYPERLINK("[https://goo.gl/G4a0A9]", "https://www.cms.gov/Medicare/Quality-Initiatives-Patient-Assessment-Instruments/Value-Based-Programs...")' THEN DO;
               CALL define(_col_,'style','style=[textdecoration=underline foreground=blue]');
            END;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I suggest you get your formula working in Excel first manually then paste it into SAS.&lt;/P&gt;</description>
      <pubDate>Sat, 08 Dec 2018 21:05:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Hyperlink-to-the-id-in-excel/m-p/519687#M140807</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2018-12-08T21:05:33Z</dc:date>
    </item>
  </channel>
</rss>

