<?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 Link Problem in Pivot Table in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Link-Problem-in-Pivot-Table/m-p/184452#M49334</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I wouldn't say it's about Fields vs. Variables... The problem, as I see it, is because the field PCR can hold multiple values, separated by comma. If you could separate the values in your load script, it would be the best. You can use function subfield() to do it.&lt;/P&gt;&lt;P&gt;If you can't, the only compromise I can see is to always link to the first value, using the same function subfield():&lt;/P&gt;&lt;P&gt;subfield(PCR,1)&lt;/P&gt;&lt;P&gt;Another compromise - you could also have a variable where the user would decide what element to link to , and replace "1" with the variable? Not very elegant, but does the job...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 10 Jun 2010 18:36:10 GMT</pubDate>
    <dc:creator>Oleg_Troyansky</dc:creator>
    <dc:date>2010-06-10T18:36:10Z</dc:date>
    <item>
      <title>Link Problem in Pivot Table</title>
      <link>https://community.qlik.com/t5/QlikView/Link-Problem-in-Pivot-Table/m-p/184447#M49329</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 provide a Hyperlink in Pivot table.&lt;/P&gt;&lt;P&gt;I am using the following Expression:&lt;/P&gt;&lt;P&gt;PCR &amp;amp; '&amp;lt;URL&amp;gt;' &amp;amp; 'http://someurl?CR_Number=' &amp;amp; PCR&lt;/P&gt;&lt;P&gt;According to this expression suppose PCR = 141 then it will direct me to the following URL:&lt;/P&gt;&lt;P&gt;http://someurl?CR_Number=141&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, the problem is that PCR may have multiple values which separated by ','&lt;/P&gt;&lt;P&gt;For Example PCR = 245,246&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ideally If I click on 245...it should direct me to the following URL:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;http://someurl?CR_Number=245&lt;/P&gt;&lt;P&gt;an If I click on 246...it should direct me to the following URL:&lt;/P&gt;&lt;P&gt;http://someurl?CR_Number=246&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but at the moment if I click on either of the two numbers it is directing me to the following URL:&lt;/P&gt;&lt;P&gt;http://someurl?CR_Number=245,246 (This URL does not exist)&lt;/P&gt;&lt;P&gt;NOTE: We may have more than two numbers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly help me out yo adress this problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Rohit&lt;/P&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jun 2010 13:48:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Link-Problem-in-Pivot-Table/m-p/184447#M49329</guid>
      <dc:creator />
      <dc:date>2010-06-10T13:48:16Z</dc:date>
    </item>
    <item>
      <title>Link Problem in Pivot Table</title>
      <link>https://community.qlik.com/t5/QlikView/Link-Problem-in-Pivot-Table/m-p/184448#M49330</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is PCR? A field? A variable?&lt;/P&gt;&lt;P&gt;I URL an expression, a dimension?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jun 2010 14:05:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Link-Problem-in-Pivot-Table/m-p/184448#M49330</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-06-10T14:05:25Z</dc:date>
    </item>
    <item>
      <title>Link Problem in Pivot Table</title>
      <link>https://community.qlik.com/t5/QlikView/Link-Problem-in-Pivot-Table/m-p/184449#M49331</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;PCR is a Field&lt;/P&gt;&lt;P&gt;URL is an Expression&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know if you need anymore Information&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jun 2010 14:08:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Link-Problem-in-Pivot-Table/m-p/184449#M49331</guid>
      <dc:creator />
      <dc:date>2010-06-10T14:08:16Z</dc:date>
    </item>
    <item>
      <title>Link Problem in Pivot Table</title>
      <link>https://community.qlik.com/t5/QlikView/Link-Problem-in-Pivot-Table/m-p/184450#M49332</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;for URL try to use a variable (v_PCR) instead of field PCR, and link that variable to the field.But when you don't have anything selected it won't show anything.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jun 2010 14:32:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Link-Problem-in-Pivot-Table/m-p/184450#M49332</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-06-10T14:32:55Z</dc:date>
    </item>
    <item>
      <title>Link Problem in Pivot Table</title>
      <link>https://community.qlik.com/t5/QlikView/Link-Problem-in-Pivot-Table/m-p/184451#M49333</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply adrian..&lt;/P&gt;&lt;P&gt;But could you explain it a little further??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jun 2010 15:26:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Link-Problem-in-Pivot-Table/m-p/184451#M49333</guid>
      <dc:creator />
      <dc:date>2010-06-10T15:26:51Z</dc:date>
    </item>
    <item>
      <title>Link Problem in Pivot Table</title>
      <link>https://community.qlik.com/t5/QlikView/Link-Problem-in-Pivot-Table/m-p/184452#M49334</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I wouldn't say it's about Fields vs. Variables... The problem, as I see it, is because the field PCR can hold multiple values, separated by comma. If you could separate the values in your load script, it would be the best. You can use function subfield() to do it.&lt;/P&gt;&lt;P&gt;If you can't, the only compromise I can see is to always link to the first value, using the same function subfield():&lt;/P&gt;&lt;P&gt;subfield(PCR,1)&lt;/P&gt;&lt;P&gt;Another compromise - you could also have a variable where the user would decide what element to link to , and replace "1" with the variable? Not very elegant, but does the job...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jun 2010 18:36:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Link-Problem-in-Pivot-Table/m-p/184452#M49334</guid>
      <dc:creator>Oleg_Troyansky</dc:creator>
      <dc:date>2010-06-10T18:36:10Z</dc:date>
    </item>
  </channel>
</rss>

