<?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: Field Event /Variable Trigger not working to open URL in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Field-Event-Variable-Trigger-not-working-to-open-URL/m-p/782478#M277117</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Saumya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try like this, Put one condition in macro like &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If(GetSelectedCount(ImageName) = 1, MacroName)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Feb 2015 15:34:49 GMT</pubDate>
    <dc:creator>jagan</dc:creator>
    <dc:date>2015-02-12T15:34:49Z</dc:date>
    <item>
      <title>Field Event /Variable Trigger not working to open URL</title>
      <link>https://community.qlik.com/t5/QlikView/Field-Event-Variable-Trigger-not-working-to-open-URL/m-p/782473#M277112</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have straight table.&lt;/P&gt;&lt;P&gt;Having Image Name and Image Location as columns.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now when I click on any Image Name and event should trigger and open and URL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Similarly on trying same with variables, I set variable on selection on Image Name.&lt;/P&gt;&lt;P&gt;and triggered an event in change of variable value to open the URL, but again its not opening&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have attached QVW and excel file with it&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Feb 2015 06:19:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Field-Event-Variable-Trigger-not-working-to-open-URL/m-p/782473#M277112</guid>
      <dc:creator>saumyashah90</dc:creator>
      <dc:date>2015-02-11T06:19:18Z</dc:date>
    </item>
    <item>
      <title>Re: Field Event /Variable Trigger not working to open URL</title>
      <link>https://community.qlik.com/t5/QlikView/Field-Event-Variable-Trigger-not-working-to-open-URL/m-p/782474#M277113</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;anyone??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Feb 2015 10:03:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Field-Event-Variable-Trigger-not-working-to-open-URL/m-p/782474#M277113</guid>
      <dc:creator>saumyashah90</dc:creator>
      <dc:date>2015-02-11T10:03:30Z</dc:date>
    </item>
    <item>
      <title>Re: Field Event /Variable Trigger not working to open URL</title>
      <link>https://community.qlik.com/t5/QlikView/Field-Event-Variable-Trigger-not-working-to-open-URL/m-p/782475#M277114</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Saumya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create a variable&lt;/P&gt;&lt;P&gt;vSelectedURL : =Only([Image Location])&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use below Macro in Document Properties -&amp;gt; Triggers-&amp;gt; Field Event Triggers-&amp;gt; On Select:&lt;/P&gt;&lt;P&gt;Sub Browse()&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; set v = ActiveDocument.GetVariable("vSelectedURL")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set ie = CreateObject("Internetexplorer.Application")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ie.Visible = True&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ie.Navigate v.GetContent.String &lt;/P&gt;&lt;P&gt;End Sub&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2015 02:07:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Field-Event-Variable-Trigger-not-working-to-open-URL/m-p/782475#M277114</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2015-02-12T02:07:42Z</dc:date>
    </item>
    <item>
      <title>Re: Field Event /Variable Trigger not working to open URL</title>
      <link>https://community.qlik.com/t5/QlikView/Field-Event-Variable-Trigger-not-working-to-open-URL/m-p/782476#M277115</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;Please find&amp;nbsp; attached file for solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2015 02:08:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Field-Event-Variable-Trigger-not-working-to-open-URL/m-p/782476#M277115</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2015-02-12T02:08:30Z</dc:date>
    </item>
    <item>
      <title>Re: Field Event /Variable Trigger not working to open URL</title>
      <link>https://community.qlik.com/t5/QlikView/Field-Event-Variable-Trigger-not-working-to-open-URL/m-p/782477#M277116</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jagan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This looks good&lt;/P&gt;&lt;P&gt;But on clicking clear all also it opens internet explorer.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2015 13:13:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Field-Event-Variable-Trigger-not-working-to-open-URL/m-p/782477#M277116</guid>
      <dc:creator>saumyashah90</dc:creator>
      <dc:date>2015-02-12T13:13:52Z</dc:date>
    </item>
    <item>
      <title>Re: Field Event /Variable Trigger not working to open URL</title>
      <link>https://community.qlik.com/t5/QlikView/Field-Event-Variable-Trigger-not-working-to-open-URL/m-p/782478#M277117</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Saumya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try like this, Put one condition in macro like &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If(GetSelectedCount(ImageName) = 1, MacroName)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2015 15:34:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Field-Event-Variable-Trigger-not-working-to-open-URL/m-p/782478#M277117</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2015-02-12T15:34:49Z</dc:date>
    </item>
  </channel>
</rss>

