<?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 Trigger to next sheet - Regarding in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Trigger-to-next-sheet-Regarding/m-p/1072681#M358160</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;good afternoon,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a requirement like when I click SalesmanID in list box it should navigate me to the next sheet. I have achieved this by going to the field event triggers "on select" but I found some thing strange.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lets assume in the attached file&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Main sheet : SalesmanId&lt;/P&gt;&lt;P&gt;Sheet 1: some table&lt;/P&gt;&lt;P&gt;Sheet 2: another table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I am getting is when I click in salesmanId in main sheet, it is navigating me to sheet1 and let us assume if I goto sheet2 and press "clear" it is again navigating to sheet1 which I don't want, in my original application also its happening if I am there in any sheet pressing clear, it is navigating to the sheet1 where I kept the original navigation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestions here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kiran kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 07 Apr 2016 10:01:20 GMT</pubDate>
    <dc:creator>kkkumar82</dc:creator>
    <dc:date>2016-04-07T10:01:20Z</dc:date>
    <item>
      <title>Trigger to next sheet - Regarding</title>
      <link>https://community.qlik.com/t5/QlikView/Trigger-to-next-sheet-Regarding/m-p/1072681#M358160</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;good afternoon,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a requirement like when I click SalesmanID in list box it should navigate me to the next sheet. I have achieved this by going to the field event triggers "on select" but I found some thing strange.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lets assume in the attached file&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Main sheet : SalesmanId&lt;/P&gt;&lt;P&gt;Sheet 1: some table&lt;/P&gt;&lt;P&gt;Sheet 2: another table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I am getting is when I click in salesmanId in main sheet, it is navigating me to sheet1 and let us assume if I goto sheet2 and press "clear" it is again navigating to sheet1 which I don't want, in my original application also its happening if I am there in any sheet pressing clear, it is navigating to the sheet1 where I kept the original navigation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestions here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kiran kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Apr 2016 10:01:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Trigger-to-next-sheet-Regarding/m-p/1072681#M358160</guid>
      <dc:creator>kkkumar82</dc:creator>
      <dc:date>2016-04-07T10:01:20Z</dc:date>
    </item>
    <item>
      <title>Re: Trigger to next sheet - Regarding</title>
      <link>https://community.qlik.com/t5/QlikView/Trigger-to-next-sheet-Regarding/m-p/1072682#M358161</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;chk sample same req i had previous.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Apr 2016 10:07:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Trigger-to-next-sheet-Regarding/m-p/1072682#M358161</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2016-04-07T10:07:03Z</dc:date>
    </item>
    <item>
      <title>Re: Trigger to next sheet - Regarding</title>
      <link>https://community.qlik.com/t5/QlikView/Trigger-to-next-sheet-Regarding/m-p/1072683#M358162</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's exactly the reason you should avoid using triggers to create this kind of magic behavior. In this case you could use a conditional expression that uses GetSelectedCount() to check if you have only one selected value in the field you're interested in. Something like =If(GetSelectedCount(SalesmanId)=1, 'SH02')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Apr 2016 10:09:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Trigger-to-next-sheet-Regarding/m-p/1072683#M358162</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2016-04-07T10:09:45Z</dc:date>
    </item>
    <item>
      <title>Re: Trigger to next sheet - Regarding</title>
      <link>https://community.qlik.com/t5/QlikView/Trigger-to-next-sheet-Regarding/m-p/1072684#M358163</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be use this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=If(SubField(GetActiveSheetId(), '\', 2) = 'SH01', 'SH02')&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Apr 2016 10:13:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Trigger-to-next-sheet-Regarding/m-p/1072684#M358163</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-04-07T10:13:07Z</dc:date>
    </item>
    <item>
      <title>Re: Trigger to next sheet - Regarding</title>
      <link>https://community.qlik.com/t5/QlikView/Trigger-to-next-sheet-Regarding/m-p/1072685#M358164</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;u can create dummy dimension &lt;/P&gt;&lt;P&gt;in script lik &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;salesmanid as salesmanId1&amp;nbsp; &lt;/P&gt;&lt;P&gt;and u can use this in&amp;nbsp; document properties&amp;nbsp; triggers&amp;nbsp; lik below&lt;IMG alt="onselect.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/120871_onselect.PNG" style="height: 190px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Apr 2016 10:13:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Trigger-to-next-sheet-Regarding/m-p/1072685#M358164</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2016-04-07T10:13:14Z</dc:date>
    </item>
    <item>
      <title>Re: Trigger to next sheet - Regarding</title>
      <link>https://community.qlik.com/t5/QlikView/Trigger-to-next-sheet-Regarding/m-p/1072686#M358165</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;=If(GetSelectedCount([Salesman ID]), 'SH02')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, it seems a bit surprising to me as well. I read somewhere that 'Clear' is caught by only 'OnAnySelect'. May be this behavior has changed in newer versions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Apr 2016 10:14:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Trigger-to-next-sheet-Regarding/m-p/1072686#M358165</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2016-04-07T10:14:23Z</dc:date>
    </item>
    <item>
      <title>Re: Trigger to next sheet - Regarding</title>
      <link>https://community.qlik.com/t5/QlikView/Trigger-to-next-sheet-Regarding/m-p/1072687#M358166</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chanty,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thats what I want similar to yours even after clearing it should not navigate to the original sheet where I kept the navigation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you tweak my file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kiran Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Apr 2016 10:14:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Trigger-to-next-sheet-Regarding/m-p/1072687#M358166</guid>
      <dc:creator>kkkumar82</dc:creator>
      <dc:date>2016-04-07T10:14:38Z</dc:date>
    </item>
    <item>
      <title>Re: Trigger to next sheet - Regarding</title>
      <link>https://community.qlik.com/t5/QlikView/Trigger-to-next-sheet-Regarding/m-p/1072688#M358167</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As for ur data i dnt hve reload option..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u can try&amp;nbsp; by creating dummy dimension&amp;nbsp; as i mentioned abve screen shot.....and apply trigger&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Apr 2016 10:21:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Trigger-to-next-sheet-Regarding/m-p/1072688#M358167</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2016-04-07T10:21:44Z</dc:date>
    </item>
    <item>
      <title>Re: Trigger to next sheet - Regarding</title>
      <link>https://community.qlik.com/t5/QlikView/Trigger-to-next-sheet-Regarding/m-p/1072689#M358168</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Gybbert&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It worked&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Apr 2016 10:23:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Trigger-to-next-sheet-Regarding/m-p/1072689#M358168</guid>
      <dc:creator>kkkumar82</dc:creator>
      <dc:date>2016-04-07T10:23:49Z</dc:date>
    </item>
    <item>
      <title>Re: Trigger to next sheet - Regarding</title>
      <link>https://community.qlik.com/t5/QlikView/Trigger-to-next-sheet-Regarding/m-p/1072690#M358169</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is this I Should use If I want to navigate only from Sheet 1 to Sheet 2 Sunny.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Apr 2016 10:25:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Trigger-to-next-sheet-Regarding/m-p/1072690#M358169</guid>
      <dc:creator>kkkumar82</dc:creator>
      <dc:date>2016-04-07T10:25:25Z</dc:date>
    </item>
    <item>
      <title>Re: Trigger to next sheet - Regarding</title>
      <link>https://community.qlik.com/t5/QlikView/Trigger-to-next-sheet-Regarding/m-p/1072691#M358170</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, this would work only if you want to navigate from a particular sheet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Apr 2016 10:27:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Trigger-to-next-sheet-Regarding/m-p/1072691#M358170</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-04-07T10:27:46Z</dc:date>
    </item>
    <item>
      <title>Re: Trigger to next sheet - Regarding</title>
      <link>https://community.qlik.com/t5/QlikView/Trigger-to-next-sheet-Regarding/m-p/1072692#M358171</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Superb ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks Sunny and Gysbert&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;finally this is what I used&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=if(subfield(GetActiveSheetId(),'\',2)='SH01', if(GetSelectedCount([Salesman ID])&amp;lt;&amp;gt;0,'SH02'))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kiran kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Apr 2016 10:30:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Trigger-to-next-sheet-Regarding/m-p/1072692#M358171</guid>
      <dc:creator>kkkumar82</dc:creator>
      <dc:date>2016-04-07T10:30:19Z</dc:date>
    </item>
  </channel>
</rss>

