<?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 Setting a variable value on launch of a hyperlink in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Setting-a-variable-value-on-launch-of-a-hyperlink/m-p/327348#M120511</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am&amp;nbsp; launching a URL from the straight table box now when i click the hyperlink i want the variable value to be changed&amp;nbsp; i have to do some actions&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;on the click of the hyperlink for this .so&amp;nbsp; how can i track the click in my hyperlink &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 28 Jun 2011 11:26:15 GMT</pubDate>
    <dc:creator>qliksus</dc:creator>
    <dc:date>2011-06-28T11:26:15Z</dc:date>
    <item>
      <title>Setting a variable value on launch of a hyperlink</title>
      <link>https://community.qlik.com/t5/QlikView/Setting-a-variable-value-on-launch-of-a-hyperlink/m-p/327348#M120511</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am&amp;nbsp; launching a URL from the straight table box now when i click the hyperlink i want the variable value to be changed&amp;nbsp; i have to do some actions&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;on the click of the hyperlink for this .so&amp;nbsp; how can i track the click in my hyperlink &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jun 2011 11:26:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Setting-a-variable-value-on-launch-of-a-hyperlink/m-p/327348#M120511</guid>
      <dc:creator>qliksus</dc:creator>
      <dc:date>2011-06-28T11:26:15Z</dc:date>
    </item>
    <item>
      <title>Re: Setting a variable value on launch of a hyperlink</title>
      <link>https://community.qlik.com/t5/QlikView/Setting-a-variable-value-on-launch-of-a-hyperlink/m-p/327349#M120512</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: trebuchet ms,geneva;"&gt;Hi,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: trebuchet ms,geneva;"&gt;Do you have many Fields in the table? If it is only one Field in the table then you can use this IsActivate property.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #339966; font-size: 10pt;"&gt;&lt;EM style="font-family: trebuchet ms,geneva;"&gt;Sub CountTableSelections()&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #339966; font-size: 10pt;"&gt;&lt;EM style="font-family: trebuchet ms,geneva;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set obj = ActiveDocument.GetSheetObject( "CH01" )&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #339966; font-size: 10pt;"&gt;&lt;EM style="font-family: trebuchet ms,geneva;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IF Obj.IsActive&amp;nbsp; = True&amp;nbsp; Then&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN style="color: #339966;"&gt;&lt;EM style="font-family: trebuchet ms,geneva;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ActiveDocument.Variables("vTest").SetContent 1 + &lt;/EM&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #339966;"&gt;&lt;EM style="font-family: trebuchet ms,geneva;"&gt;ActiveDocument.Variables("vTest").GetContent.String&lt;/EM&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #339966;"&gt;&lt;EM style="font-family: trebuchet ms,geneva;"&gt;,True&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/EM&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #339966; font-size: 10pt;"&gt;&lt;EM style="font-family: trebuchet ms,geneva;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Else&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #339966; font-size: 10pt;"&gt;&lt;EM style="font-family: trebuchet ms,geneva;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; End IF&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #339966; font-size: 10pt;"&gt;&lt;EM style="font-family: trebuchet ms,geneva;"&gt;End Sub&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: trebuchet ms,geneva;"&gt;Good luck!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: trebuchet ms,geneva;"&gt;&lt;STRONG&gt;Cheers - DV&lt;/STRONG&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jun 2011 11:50:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Setting-a-variable-value-on-launch-of-a-hyperlink/m-p/327349#M120512</guid>
      <dc:creator>IAMDV</dc:creator>
      <dc:date>2011-06-28T11:50:37Z</dc:date>
    </item>
    <item>
      <title>Setting a variable value on launch of a hyperlink</title>
      <link>https://community.qlik.com/t5/QlikView/Setting-a-variable-value-on-launch-of-a-hyperlink/m-p/327350#M120513</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hi &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i can click the table first and then click on the link so in this case even if i simply click the table the variable will be &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set&amp;nbsp; i dont want that to happen what i want is only when i click the hyperlink in the expression the variable should be &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set .Also where should i call this macro &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jun 2011 12:04:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Setting-a-variable-value-on-launch-of-a-hyperlink/m-p/327350#M120513</guid>
      <dc:creator>qliksus</dc:creator>
      <dc:date>2011-06-28T12:04:39Z</dc:date>
    </item>
    <item>
      <title>Re: Setting a variable value on launch of a hyperlink</title>
      <link>https://community.qlik.com/t5/QlikView/Setting-a-variable-value-on-launch-of-a-hyperlink/m-p/327351#M120514</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: trebuchet ms,geneva;"&gt;I totally agree with you. This is not the best solution and we need the property of Display Options &amp;gt; URL to capture the clicks. I am looking at the API guide and I'll get back to you if I find something better than this one. You use the Field Event Triggers and you can use "OnSelect" event with relevant field selected.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: trebuchet ms,geneva;"&gt;Cheers - DV&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jun 2011 12:43:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Setting-a-variable-value-on-launch-of-a-hyperlink/m-p/327351#M120514</guid>
      <dc:creator>IAMDV</dc:creator>
      <dc:date>2011-06-28T12:43:41Z</dc:date>
    </item>
    <item>
      <title>Setting a variable value on launch of a hyperlink</title>
      <link>https://community.qlik.com/t5/QlikView/Setting-a-variable-value-on-launch-of-a-hyperlink/m-p/327352#M120515</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Guys any update&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jun 2011 05:28:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Setting-a-variable-value-on-launch-of-a-hyperlink/m-p/327352#M120515</guid>
      <dc:creator>qliksus</dc:creator>
      <dc:date>2011-06-29T05:28:00Z</dc:date>
    </item>
    <item>
      <title>Setting a variable value on launch of a hyperlink</title>
      <link>https://community.qlik.com/t5/QlikView/Setting-a-variable-value-on-launch-of-a-hyperlink/m-p/327353#M120516</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just a thought, but if you have built the hyperlink based on the data in your view, i.e. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=&lt;SPAN style="color: #800000;"&gt;[Name]&lt;/SPAN&gt;&lt;SPAN&gt;&amp;amp;'&amp;lt;url&amp;gt;'&amp;amp;'&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://www.google.com/search?q='&amp;amp;"&gt;http://www.google.com/search?q='&amp;amp;&lt;/A&gt;&lt;SPAN style="color: #800000;"&gt;Name &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Couldn't you parse the GetCurrentSelections() function to build the variable? Or GetFieldSelections()?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jun 2011 06:07:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Setting-a-variable-value-on-launch-of-a-hyperlink/m-p/327353#M120516</guid>
      <dc:creator />
      <dc:date>2011-06-29T06:07:20Z</dc:date>
    </item>
    <item>
      <title>Setting a variable value on launch of a hyperlink</title>
      <link>https://community.qlik.com/t5/QlikView/Setting-a-variable-value-on-launch-of-a-hyperlink/m-p/327354#M120517</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; hi leonard,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what i am doing is i am passing the value to the URL which is taken as a dimension i.e&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://10.0.2.3/empid=[EMP"&gt;https://10.0.2.3/empid=[EMP&lt;/A&gt; ID]&amp;nbsp; where the&amp;nbsp; EMPID is the dimension in my chart. also when i click the link the &lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;dimension [EMP ID] will not be selected so Getfieldselection() cant be used &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jun 2011 06:34:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Setting-a-variable-value-on-launch-of-a-hyperlink/m-p/327354#M120517</guid>
      <dc:creator>qliksus</dc:creator>
      <dc:date>2011-06-29T06:34:40Z</dc:date>
    </item>
    <item>
      <title>Setting a variable value on launch of a hyperlink</title>
      <link>https://community.qlik.com/t5/QlikView/Setting-a-variable-value-on-launch-of-a-hyperlink/m-p/327355#M120518</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you tried any field event triggers? Ctrl+Alt+D then go to the triggers tab. Seems you should be able to set the variable and launch the URL based on what you click in the [EMP ID] field? Or at least fire off a macro to do the same?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(Sorry this is way above where I have gone before so not a lot of help...)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jun 2011 07:22:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Setting-a-variable-value-on-launch-of-a-hyperlink/m-p/327355#M120518</guid>
      <dc:creator />
      <dc:date>2011-06-29T07:22:29Z</dc:date>
    </item>
    <item>
      <title>Setting a variable value on launch of a hyperlink</title>
      <link>https://community.qlik.com/t5/QlikView/Setting-a-variable-value-on-launch-of-a-hyperlink/m-p/327356#M120519</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; yes you are right i can trigger something when some field is selected but in this case the field will not be selected &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just the link will be clicked so i have track the click on the link and then set a variable on that event &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this explains correctly what i need&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jun 2011 07:30:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Setting-a-variable-value-on-launch-of-a-hyperlink/m-p/327356#M120519</guid>
      <dc:creator>qliksus</dc:creator>
      <dc:date>2011-06-29T07:30:40Z</dc:date>
    </item>
    <item>
      <title>Re: Setting a variable value on launch of a hyperlink</title>
      <link>https://community.qlik.com/t5/QlikView/Setting-a-variable-value-on-launch-of-a-hyperlink/m-p/327357#M120520</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could you add a second trigger to launch the URL when the field is&lt;/P&gt;&lt;P&gt;selected and not make the field itself a hyperlink?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jun 2011 07:34:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Setting-a-variable-value-on-launch-of-a-hyperlink/m-p/327357#M120520</guid>
      <dc:creator />
      <dc:date>2011-06-29T07:34:50Z</dc:date>
    </item>
    <item>
      <title>Re: Setting a variable value on launch of a hyperlink</title>
      <link>https://community.qlik.com/t5/QlikView/Setting-a-variable-value-on-launch-of-a-hyperlink/m-p/327358#M120521</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check out this post on field triggers, I think it will point you in the&lt;/P&gt;&lt;P&gt;right direction...&lt;/P&gt;&lt;P&gt;http://community.qlik.com/message/101446#101446&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jun 2011 07:57:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Setting-a-variable-value-on-launch-of-a-hyperlink/m-p/327358#M120521</guid>
      <dc:creator />
      <dc:date>2011-06-29T07:57:04Z</dc:date>
    </item>
    <item>
      <title>Re: Setting a variable value on launch of a hyperlink</title>
      <link>https://community.qlik.com/t5/QlikView/Setting-a-variable-value-on-launch-of-a-hyperlink/m-p/327359#M120522</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; I dont know is this a possible solution or not, but you can try if you feel so.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Create a seperate field in your table which will have the URL as the value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; So you can place a trigger on select of the value from this field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kaushik Solanki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jun 2011 07:58:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Setting-a-variable-value-on-launch-of-a-hyperlink/m-p/327359#M120522</guid>
      <dc:creator>kaushiknsolanki</dc:creator>
      <dc:date>2011-06-29T07:58:19Z</dc:date>
    </item>
    <item>
      <title>Re: Setting a variable value on launch of a hyperlink</title>
      <link>https://community.qlik.com/t5/QlikView/Setting-a-variable-value-on-launch-of-a-hyperlink/m-p/327360#M120523</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: trebuchet ms,geneva;"&gt;Hi Mate,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: trebuchet ms,geneva;"&gt;Like I had mentioned in my first post of using Field Selection Even Trigger. Here is the basic example... I had not incremented the vTest value but if this idea works then you increment the vTest variable everytime the user clicks on the Chart.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: trebuchet ms,geneva;"&gt;Cheers - DV&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jun 2011 08:10:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Setting-a-variable-value-on-launch-of-a-hyperlink/m-p/327360#M120523</guid>
      <dc:creator>IAMDV</dc:creator>
      <dc:date>2011-06-29T08:10:10Z</dc:date>
    </item>
    <item>
      <title>Re: Setting a variable value on launch of a hyperlink</title>
      <link>https://community.qlik.com/t5/QlikView/Setting-a-variable-value-on-launch-of-a-hyperlink/m-p/327361#M120524</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: trebuchet ms,geneva;"&gt;Just adding to my previous post. You can also use the same logic to create the straight table and it works fine. I hope this helps!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: trebuchet ms,geneva;"&gt;Cheers - DV&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jun 2011 08:16:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Setting-a-variable-value-on-launch-of-a-hyperlink/m-p/327361#M120524</guid>
      <dc:creator>IAMDV</dc:creator>
      <dc:date>2011-06-29T08:16:35Z</dc:date>
    </item>
    <item>
      <title>Setting a variable value on launch of a hyperlink</title>
      <link>https://community.qlik.com/t5/QlikView/Setting-a-variable-value-on-launch-of-a-hyperlink/m-p/327362#M120525</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; thanks for the reply kaushik even if i do that when i change the representation to hyperlink &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then the field will not be selected even if i click . it will show me some approval message for the link we have created &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the script&amp;nbsp; that's y i am asking to track the click on the hyperlink&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jun 2011 08:37:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Setting-a-variable-value-on-launch-of-a-hyperlink/m-p/327362#M120525</guid>
      <dc:creator>qliksus</dc:creator>
      <dc:date>2011-06-29T08:37:45Z</dc:date>
    </item>
    <item>
      <title>Setting a variable value on launch of a hyperlink</title>
      <link>https://community.qlik.com/t5/QlikView/Setting-a-variable-value-on-launch-of-a-hyperlink/m-p/327363#M120526</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi DV,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; thanks for the reply but i dont want this to happen on the selection of some field in your solution when u select a &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;field some link will be launched and then the variable will be set If you take the same field in straight table &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and change the representation to link then u cant select that field that's the problem .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jun 2011 08:41:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Setting-a-variable-value-on-launch-of-a-hyperlink/m-p/327363#M120526</guid>
      <dc:creator>qliksus</dc:creator>
      <dc:date>2011-06-29T08:41:13Z</dc:date>
    </item>
    <item>
      <title>Setting a variable value on launch of a hyperlink</title>
      <link>https://community.qlik.com/t5/QlikView/Setting-a-variable-value-on-launch-of-a-hyperlink/m-p/327364#M120527</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hi short,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for&amp;nbsp; the reply ur link is quite helpful but cant solve my problem refer my previous post for that &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jun 2011 08:43:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Setting-a-variable-value-on-launch-of-a-hyperlink/m-p/327364#M120527</guid>
      <dc:creator>qliksus</dc:creator>
      <dc:date>2011-06-29T08:43:48Z</dc:date>
    </item>
    <item>
      <title>Setting a variable value on launch of a hyperlink</title>
      <link>https://community.qlik.com/t5/QlikView/Setting-a-variable-value-on-launch-of-a-hyperlink/m-p/327365#M120528</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;guys any update&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jun 2011 17:49:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Setting-a-variable-value-on-launch-of-a-hyperlink/m-p/327365#M120528</guid>
      <dc:creator>qliksus</dc:creator>
      <dc:date>2011-06-29T17:49:23Z</dc:date>
    </item>
    <item>
      <title>Setting a variable value on launch of a hyperlink</title>
      <link>https://community.qlik.com/t5/QlikView/Setting-a-variable-value-on-launch-of-a-hyperlink/m-p/327366#M120529</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can set a macro to change the variable on the event of "OnAnyselect" of the document properties as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Settings - &amp;gt; Document Properties -&amp;gt; Macros (tab)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Under "Document Event Triggers" you set a macro to change the variable value on the event trigger of "OnAnySelect"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the macro you should verify whether the active chart is the one you wanted (that have links to click) otherwise dont set the variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It must solve your problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jun 2011 05:42:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Setting-a-variable-value-on-launch-of-a-hyperlink/m-p/327366#M120529</guid>
      <dc:creator />
      <dc:date>2011-06-30T05:42:28Z</dc:date>
    </item>
    <item>
      <title>Re: Setting a variable value on launch of a hyperlink</title>
      <link>https://community.qlik.com/t5/QlikView/Setting-a-variable-value-on-launch-of-a-hyperlink/m-p/327367#M120530</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; I hope you want something like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Have a look at the attachment.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kaushik Solanki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jun 2011 08:48:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Setting-a-variable-value-on-launch-of-a-hyperlink/m-p/327367#M120530</guid>
      <dc:creator>kaushiknsolanki</dc:creator>
      <dc:date>2011-06-30T08:48:05Z</dc:date>
    </item>
  </channel>
</rss>

