<?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 Need help with hyperlink in qlikview tables in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Need-help-with-hyperlink-in-qlikview-tables/m-p/208960#M64122</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Firstly i would do the CR removal in the load script and alias as a separte field e.g.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;Replace(upper([Issues]),'CR','') as [IssueNoCR],&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;This does two things, makes your expressions easier to debug and also moves the processing time of the string function to the reload instead of the render process.&lt;/P&gt;&lt;P&gt;now i am assuming both CR numbers are stored in the same field in the format "CR12345,CR45678" in which case you can use the function subfield on it e.g.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;subfield(Replace(upper([Issues]),'CR',''),',',1) as [IssueNoCR_1],&lt;BR /&gt;subfield(Replace(upper([Issues]),'CR',''),',',2) as [IssueNoCR_2],&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Now you can rewrite your link to be&lt;/P&gt;&lt;P&gt;IssuesNoCR_1&amp;amp;'&amp;lt;URL&amp;gt;'&amp;amp; 'http://ABC.com/Services/CR/CRDetail.cfm?CR_Number='&amp;amp;IssuesNOCR_1&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;IssuesNoCR_2&amp;amp;'&amp;lt;URL&amp;gt;'&amp;amp; 'http://ABC.com/Services/CR/CRDetail.cfm?CR_Number='&amp;amp;IssuesNOCR_2&lt;/P&gt;&lt;P&gt;as required.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Any more than two or three CR's however and you maybe looking at intergating a for next loop to dynamically subfield the Cr's and then transactionalise the dataset.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 30 Jun 2010 18:47:57 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-06-30T18:47:57Z</dc:date>
    <item>
      <title>Need help with hyperlink in qlikview tables</title>
      <link>https://community.qlik.com/t5/QlikView/Need-help-with-hyperlink-in-qlikview-tables/m-p/208959#M64121</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am trying to put hyperlink for some change request number (CR ) in qlikview table. I am using the following expression (Also made the required changes in the display option on the chart properties):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concat(Replace(upper([ Issues]),'CR',''))&amp;amp;'&amp;lt;URL&amp;gt;'&amp;amp; 'http://ABC.com/Services/CR/CRDetail.cfm?CR_Number='&amp;amp;&lt;/P&gt;&lt;P&gt;concat(Replace(upper([Issues]),'CR',''))&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Here i am also using the replace statement to remove the string CR as my "Issues" having values like CR12345, CR45678 etc but my link is ultimately using only the number like 12345, 45678 from the issues.&lt;/P&gt;&lt;P&gt;This works fine when each cell has only 1 value but the problem starts when cells have multiple values. in that case it starts showing hyperlink as&lt;/P&gt;&lt;P&gt;&lt;A href="http://ABC.com/Services/CR/CRDetail.cfm?CR_Number=12345,%2045678"&gt;http://ABC.com/Services/CR/CRDetail.cfm?CR_Number= 12345, 45678&lt;/A&gt;&lt;/P&gt;&lt;P&gt;which is not correct. it should give me &lt;A href="http://ABC.com/Services/CR/CRDetail.cfm?CR_Number=12345,%2045678"&gt;http://ABC.com/Services/CR/CRDetail.cfm?CR_Number= 12345&lt;/A&gt;&lt;/P&gt;&lt;P&gt;and &lt;A href="http://ABC.com/Services/CR/CRDetail.cfm?CR_Number=12345,%2045678"&gt;http://ABC.com/Services/CR/CRDetail.cfm?CR_Number= 45&lt;/A&gt;678 separately.&lt;/P&gt;&lt;P&gt;Can someone please help with it?&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jun 2010 15:41:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-help-with-hyperlink-in-qlikview-tables/m-p/208959#M64121</guid>
      <dc:creator />
      <dc:date>2010-06-30T15:41:08Z</dc:date>
    </item>
    <item>
      <title>Need help with hyperlink in qlikview tables</title>
      <link>https://community.qlik.com/t5/QlikView/Need-help-with-hyperlink-in-qlikview-tables/m-p/208960#M64122</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Firstly i would do the CR removal in the load script and alias as a separte field e.g.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;Replace(upper([Issues]),'CR','') as [IssueNoCR],&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;This does two things, makes your expressions easier to debug and also moves the processing time of the string function to the reload instead of the render process.&lt;/P&gt;&lt;P&gt;now i am assuming both CR numbers are stored in the same field in the format "CR12345,CR45678" in which case you can use the function subfield on it e.g.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;subfield(Replace(upper([Issues]),'CR',''),',',1) as [IssueNoCR_1],&lt;BR /&gt;subfield(Replace(upper([Issues]),'CR',''),',',2) as [IssueNoCR_2],&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Now you can rewrite your link to be&lt;/P&gt;&lt;P&gt;IssuesNoCR_1&amp;amp;'&amp;lt;URL&amp;gt;'&amp;amp; 'http://ABC.com/Services/CR/CRDetail.cfm?CR_Number='&amp;amp;IssuesNOCR_1&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;IssuesNoCR_2&amp;amp;'&amp;lt;URL&amp;gt;'&amp;amp; 'http://ABC.com/Services/CR/CRDetail.cfm?CR_Number='&amp;amp;IssuesNOCR_2&lt;/P&gt;&lt;P&gt;as required.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Any more than two or three CR's however and you maybe looking at intergating a for next loop to dynamically subfield the Cr's and then transactionalise the dataset.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jun 2010 18:47:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-help-with-hyperlink-in-qlikview-tables/m-p/208960#M64122</guid>
      <dc:creator />
      <dc:date>2010-06-30T18:47:57Z</dc:date>
    </item>
  </channel>
</rss>

