<?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: Script to show from what is clicked in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Script-to-show-from-what-is-clicked/m-p/408603#M1157371</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I guess your example has a problem in that when using PACK_NAME you select the change &lt;EM&gt;target&lt;/EM&gt; instead of the change &lt;EM&gt;source&lt;/EM&gt;. Order the records in reverse order (add DESC to the ORDER BY clause) and you will most probably get the intended result.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 05 Mar 2013 21:51:58 GMT</pubDate>
    <dc:creator>Peter_Cammaert</dc:creator>
    <dc:date>2013-03-05T21:51:58Z</dc:date>
    <item>
      <title>Script to show from what is clicked</title>
      <link>https://community.qlik.com/t5/QlikView/Script-to-show-from-what-is-clicked/m-p/408602#M1157370</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please find the attached file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here when i click on Basic its showing platinum to basic how many people changed.same for gold and platinum also its showing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But i want when i click on Basic it should show from basic how many people changed.Ex Basic to gold how many people changed and Basic to Platinum how many people changed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am Using the below script to do .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone please help how to achieve whatever i want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in ADVANCE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PackageChange:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD CH_SUB_ID,PACK_ID,PACK_NAME,REG_NAME,SUB_DATE,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; month(SUB_DATE) as Month,&lt;/P&gt;&lt;P&gt; Year(SUB_DATE) as Year,&lt;/P&gt;&lt;P&gt; Dual('Q' &amp;amp; Ceil(Month(SUB_DATE)/3), Ceil(Month(SUB_DATE)/3)) as Quarter ,&lt;/P&gt;&lt;P&gt; QuarterName(SUB_DATE) as YearQuarter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if( Peek(CH_SUB_ID)=CH_SUB_ID&amp;nbsp; ,if(PACK_ID &amp;lt;&amp;gt;Peek(PACK_ID),peek(PACK_NAME) &amp;amp; ' - ' &amp;amp; PACK_NAME,'' ),'NA') as Change&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Resident Temp&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Order By CH_SUB_ID,SUB_DATE;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP table Temp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FinalTable:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD *, 1 as Flag&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Resident PackageChange&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where Change &amp;lt;&amp;gt;&amp;nbsp; 'NA';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Drop Table PackageChange;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Mar 2013 12:38:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-to-show-from-what-is-clicked/m-p/408602#M1157370</guid>
      <dc:creator />
      <dc:date>2013-03-05T12:38:44Z</dc:date>
    </item>
    <item>
      <title>Re: Script to show from what is clicked</title>
      <link>https://community.qlik.com/t5/QlikView/Script-to-show-from-what-is-clicked/m-p/408603#M1157371</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I guess your example has a problem in that when using PACK_NAME you select the change &lt;EM&gt;target&lt;/EM&gt; instead of the change &lt;EM&gt;source&lt;/EM&gt;. Order the records in reverse order (add DESC to the ORDER BY clause) and you will most probably get the intended result.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Mar 2013 21:51:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-to-show-from-what-is-clicked/m-p/408603#M1157371</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2013-03-05T21:51:58Z</dc:date>
    </item>
    <item>
      <title>Re: Script to show from what is clicked</title>
      <link>https://community.qlik.com/t5/QlikView/Script-to-show-from-what-is-clicked/m-p/408604#M1157372</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Peter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One more help i want.when i click on basic in the graph i want to display from basic and when i click gold in the graph i want to show from gold .same way for platinum.is this possible to dynamiccaly show selected value in the graph???&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Mar 2013 03:11:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-to-show-from-what-is-clicked/m-p/408604#M1157372</guid>
      <dc:creator />
      <dc:date>2013-03-06T03:11:03Z</dc:date>
    </item>
    <item>
      <title>Re: Script to show from what is clicked</title>
      <link>https://community.qlik.com/t5/QlikView/Script-to-show-from-what-is-clicked/m-p/408605#M1157373</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Peter &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have done it..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Mar 2013 03:40:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-to-show-from-what-is-clicked/m-p/408605#M1157373</guid>
      <dc:creator />
      <dc:date>2013-03-06T03:40:46Z</dc:date>
    </item>
  </channel>
</rss>

