<?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: Exporting table as htm file in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Exporting-table-as-htm-file/m-p/1010096#M950630</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I could not find a workaround in Qlik, so I used this short Python Code to parse the file. It replaces the strings as shown in the code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;import fileinput&lt;/P&gt;&lt;P&gt;for line in fileinput.FileInput("testHyperlink14.html",inplace=1):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; line = line.replace('&amp;amp;quot;', '"')&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; print line,&lt;/P&gt;&lt;P&gt;for line in fileinput.FileInput("testHyperlink14.html",inplace=1):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; line = line.replace('&amp;amp;lt;', '&amp;lt;')&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; print line,&lt;/P&gt;&lt;P&gt;for line in fileinput.FileInput("testHyperlink14.html",inplace=1):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; line = line.replace('&amp;amp;gt;', '&amp;gt;')&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; print line,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 03 Dec 2015 05:40:56 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-12-03T05:40:56Z</dc:date>
    <item>
      <title>Exporting table as htm file</title>
      <link>https://community.qlik.com/t5/QlikView/Exporting-table-as-htm-file/m-p/1010095#M950629</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a straight table which I export as an htm file. (I intend to use a macro for this eventually) The problem is that I have an embedded link in one column that should be an active link when the file is opened in a browser.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The issue is that when&amp;nbsp; this column is written out:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;'&amp;lt;a href="&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://www-tac.cisco.com/Teams/ks/c3/casekwery.php?Case=" rel="nofollow"&gt;http://www-tac.company.com/Teams/ks/c3/casekwery.php?Case=&lt;/A&gt;&lt;SPAN&gt;' &amp;amp;&amp;nbsp; max(INCIDENT_NUMBER) &amp;amp; '"&amp;gt;&amp;lt;' &amp;amp;&amp;nbsp; max(INCIDENT_NUMBER) &amp;amp; '&amp;gt;&amp;lt;/a&amp;gt;'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It becomes this - note the &amp;amp;Lt; and the &amp;amp;quot; in place of &amp;lt; and "&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;amp;lt;a href=&amp;amp;quot;&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://www-tac.cisco.com/Teams/ks/c3/casekwery.php?Case=637165403&amp;amp;quot;&amp;amp;gt;&amp;amp;lt;637165403&amp;amp;gt;&amp;amp;lt;/a&amp;amp;gt;" rel="nofollow"&gt;http://www-tac.company.com/Teams/ks/c3/casekwery.php?Case=637165403"&amp;gt;&amp;lt;637165403&amp;gt;&amp;lt;/a&amp;gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;when I check the htm file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I change the &amp;amp;lt; to &amp;lt;&amp;nbsp;&amp;nbsp;&amp;nbsp; and the &amp;amp;quot;&amp;nbsp; to "&amp;nbsp;&amp;nbsp; in an editor it will work as a link when opened in a browser.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm assuming that Qlik htm interpreter is changing a " to &amp;amp;quot;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My question is is there any way around this and to make the link show up as code that a browser understands.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Nov 2015 19:57:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exporting-table-as-htm-file/m-p/1010095#M950629</guid>
      <dc:creator />
      <dc:date>2015-11-30T19:57:44Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting table as htm file</title>
      <link>https://community.qlik.com/t5/QlikView/Exporting-table-as-htm-file/m-p/1010096#M950630</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I could not find a workaround in Qlik, so I used this short Python Code to parse the file. It replaces the strings as shown in the code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;import fileinput&lt;/P&gt;&lt;P&gt;for line in fileinput.FileInput("testHyperlink14.html",inplace=1):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; line = line.replace('&amp;amp;quot;', '"')&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; print line,&lt;/P&gt;&lt;P&gt;for line in fileinput.FileInput("testHyperlink14.html",inplace=1):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; line = line.replace('&amp;amp;lt;', '&amp;lt;')&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; print line,&lt;/P&gt;&lt;P&gt;for line in fileinput.FileInput("testHyperlink14.html",inplace=1):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; line = line.replace('&amp;amp;gt;', '&amp;gt;')&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; print line,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Dec 2015 05:40:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exporting-table-as-htm-file/m-p/1010096#M950630</guid>
      <dc:creator />
      <dc:date>2015-12-03T05:40:56Z</dc:date>
    </item>
  </channel>
</rss>

