<?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: Load an Excel column with hyperlinks into QlikView? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Load-an-Excel-column-with-hyperlinks-into-QlikView/m-p/1074002#M358463</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think we can't fetch the hyperlink details from the excel cell (as i know)&lt;/P&gt;&lt;P&gt;may be the workaround, you can simply put the below macro in your excel and get the hyperlink value in separate column..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;Sub ExtractHL()&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Dim HL As Hyperlink&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;For Each HL In ActiveSheet.Hyperlinks&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;HL.Range.Offset(0, 1).Value = HL.Address&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Next&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;End Sub&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;source : &lt;A href="http://howtouseexcel.net/how-to-extract-a-url-from-a-hyperlink-on-excel" title="http://howtouseexcel.net/how-to-extract-a-url-from-a-hyperlink-on-excel"&gt;How to extract a URL from a hyperlink on Excel&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load your fields..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD dim,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; hyperlink&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;Book1.xlsx&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create a chart&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;dim as your dimension&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;=dim &amp;amp; '&amp;lt;url&amp;gt;'&amp;amp;hyperlink&amp;nbsp; &lt;/EM&gt;&lt;/STRONG&gt;&lt;EM&gt;as your expression, representation should be Link..&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&amp;gt; You can hide your dim field if you don't want..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 May 2016 17:53:33 GMT</pubDate>
    <dc:creator>settu_periasamy</dc:creator>
    <dc:date>2016-05-04T17:53:33Z</dc:date>
    <item>
      <title>Load an Excel column with hyperlinks into QlikView?</title>
      <link>https://community.qlik.com/t5/QlikView/Load-an-Excel-column-with-hyperlinks-into-QlikView/m-p/1074001#M358462</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is it possible to load an Excel&amp;nbsp; column with hyperlinks into QlikView?&amp;nbsp; If yes can you direct me to an example or resource?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 May 2016 11:59:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-an-Excel-column-with-hyperlinks-into-QlikView/m-p/1074001#M358462</guid>
      <dc:creator>richardouellett</dc:creator>
      <dc:date>2016-05-04T11:59:38Z</dc:date>
    </item>
    <item>
      <title>Re: Load an Excel column with hyperlinks into QlikView?</title>
      <link>https://community.qlik.com/t5/QlikView/Load-an-Excel-column-with-hyperlinks-into-QlikView/m-p/1074002#M358463</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think we can't fetch the hyperlink details from the excel cell (as i know)&lt;/P&gt;&lt;P&gt;may be the workaround, you can simply put the below macro in your excel and get the hyperlink value in separate column..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;Sub ExtractHL()&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Dim HL As Hyperlink&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;For Each HL In ActiveSheet.Hyperlinks&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;HL.Range.Offset(0, 1).Value = HL.Address&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Next&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;End Sub&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;source : &lt;A href="http://howtouseexcel.net/how-to-extract-a-url-from-a-hyperlink-on-excel" title="http://howtouseexcel.net/how-to-extract-a-url-from-a-hyperlink-on-excel"&gt;How to extract a URL from a hyperlink on Excel&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load your fields..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD dim,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; hyperlink&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;Book1.xlsx&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create a chart&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;dim as your dimension&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;=dim &amp;amp; '&amp;lt;url&amp;gt;'&amp;amp;hyperlink&amp;nbsp; &lt;/EM&gt;&lt;/STRONG&gt;&lt;EM&gt;as your expression, representation should be Link..&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&amp;gt; You can hide your dim field if you don't want..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 May 2016 17:53:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-an-Excel-column-with-hyperlinks-into-QlikView/m-p/1074002#M358463</guid>
      <dc:creator>settu_periasamy</dc:creator>
      <dc:date>2016-05-04T17:53:33Z</dc:date>
    </item>
    <item>
      <title>Re: Load an Excel column with hyperlinks into QlikView?</title>
      <link>https://community.qlik.com/t5/QlikView/Load-an-Excel-column-with-hyperlinks-into-QlikView/m-p/1074003#M358464</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As far as my knowledge it is not possible.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 May 2016 17:57:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-an-Excel-column-with-hyperlinks-into-QlikView/m-p/1074003#M358464</guid>
      <dc:creator>trdandamudi</dc:creator>
      <dc:date>2016-05-04T17:57:54Z</dc:date>
    </item>
    <item>
      <title>Re: Load an Excel column with hyperlinks into QlikView?</title>
      <link>https://community.qlik.com/t5/QlikView/Load-an-Excel-column-with-hyperlinks-into-QlikView/m-p/1074004#M358465</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Very helpful, thank you very much for the example!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 May 2016 23:25:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-an-Excel-column-with-hyperlinks-into-QlikView/m-p/1074004#M358465</guid>
      <dc:creator>richardouellett</dc:creator>
      <dc:date>2016-05-04T23:25:32Z</dc:date>
    </item>
  </channel>
</rss>

