<?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: To Select Blank Value Using Trigger in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/To-Select-Blank-Value-Using-Trigger/m-p/593409#M547132</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;find below an example where I could select two values along with the blank&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;("b"|"f"|"")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try it after changing your intended values&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 17 Feb 2014 12:27:12 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-02-17T12:27:12Z</dc:date>
    <item>
      <title>To Select Blank Value Using Trigger</title>
      <link>https://community.qlik.com/t5/QlikView/To-Select-Blank-Value-Using-Trigger/m-p/593403#M547126</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 have to select a set of values(including blank) in a particular field as default while leaving a sheet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And I am using the following triggers &lt;/P&gt;&lt;P&gt;Select in Field:&lt;/P&gt;&lt;P&gt;Field: FIELD&lt;/P&gt;&lt;P&gt;Search String: only({&amp;lt;FIELD={"=len(FIELD)=0"} &amp;gt;}FIELD)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Toggle Select: &lt;/P&gt;&lt;P&gt;Field: FIELD&lt;/P&gt;&lt;P&gt;Search String: (Value1|Value2)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This works only if there is no selection on that FIELD. If there is any other selections, it is not working. Even I have tried 'Clear All Field' Trigger. But doesn't works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help to find a solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Vinitha Mano R.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Feb 2014 10:49:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/To-Select-Blank-Value-Using-Trigger/m-p/593403#M547126</guid>
      <dc:creator />
      <dc:date>2014-02-17T10:49:11Z</dc:date>
    </item>
    <item>
      <title>Re: To Select Blank Value Using Trigger</title>
      <link>https://community.qlik.com/t5/QlikView/To-Select-Blank-Value-Using-Trigger/m-p/593404#M547127</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you really trying to clear the selections or select all the values in that field? Try changing the search string as *&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Feb 2014 11:00:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/To-Select-Blank-Value-Using-Trigger/m-p/593404#M547127</guid>
      <dc:creator />
      <dc:date>2014-02-17T11:00:20Z</dc:date>
    </item>
    <item>
      <title>Re: To Select Blank Value Using Trigger</title>
      <link>https://community.qlik.com/t5/QlikView/To-Select-Blank-Value-Using-Trigger/m-p/593405#M547128</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vinitha,&lt;/P&gt;&lt;P&gt;R u trying to do something ike document chaining?&lt;/P&gt;&lt;P&gt;Plese explain "doesn't work"...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-sundar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Feb 2014 11:08:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/To-Select-Blank-Value-Using-Trigger/m-p/593405#M547128</guid>
      <dc:creator>sundarakumar</dc:creator>
      <dc:date>2014-02-17T11:08:38Z</dc:date>
    </item>
    <item>
      <title>Re: To Select Blank Value Using Trigger</title>
      <link>https://community.qlik.com/t5/QlikView/To-Select-Blank-Value-Using-Trigger/m-p/593406#M547129</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if I understand I think you coulduse a trigger like that&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select in field&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;field&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; field&lt;/P&gt;&lt;P&gt;expression&lt;/P&gt;&lt;P&gt;=if(GetSelectedCount(field)&amp;gt;0,&lt;/P&gt;&lt;P&gt;'(' &amp;amp; concat(if(len(trim(field))&amp;gt;0, '"' &amp;amp; field &amp;amp; '"' ), '|')&amp;nbsp; &amp;amp; '|""' &amp;amp;&amp;nbsp; ')' ,&lt;/P&gt;&lt;P&gt;'('&amp;nbsp; &amp;amp; '""' &amp;amp;&amp;nbsp; ')'&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the idea is to create a search expression with the selected values (concat) and then add at the end the blank value&lt;/P&gt;&lt;P&gt;("firstselected"|"secondselected"|...........|"lastselected"|"")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;see attachment&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Feb 2014 11:55:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/To-Select-Blank-Value-Using-Trigger/m-p/593406#M547129</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2014-02-17T11:55:22Z</dc:date>
    </item>
    <item>
      <title>Re: To Select Blank Value Using Trigger</title>
      <link>https://community.qlik.com/t5/QlikView/To-Select-Blank-Value-Using-Trigger/m-p/593407#M547130</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;Since the trigger with condition "&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;only({&amp;lt;FIELD={"=len(FIELD)=0"} &amp;gt;}FIELD)"&lt;/SPAN&gt; is working if there is no selections on that field, I have tried to apply 'Clear field' trigger before applying "select in Field" trigger.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But even then the blank value is not selected if I leave the page but the other 2 values which I have mentioned in 'Toggle Select' trigger is selected.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I would like to select the 2 values along with the blank value when I leave the page.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Vinitha Mano R.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Feb 2014 12:05:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/To-Select-Blank-Value-Using-Trigger/m-p/593407#M547130</guid>
      <dc:creator />
      <dc:date>2014-02-17T12:05:25Z</dc:date>
    </item>
    <item>
      <title>Re: To Select Blank Value Using Trigger</title>
      <link>https://community.qlik.com/t5/QlikView/To-Select-Blank-Value-Using-Trigger/m-p/593408#M547131</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you attach a sample because I don't know the 2 values you are trying to select when you leave the page.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Feb 2014 12:12:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/To-Select-Blank-Value-Using-Trigger/m-p/593408#M547131</guid>
      <dc:creator />
      <dc:date>2014-02-17T12:12:48Z</dc:date>
    </item>
    <item>
      <title>Re: To Select Blank Value Using Trigger</title>
      <link>https://community.qlik.com/t5/QlikView/To-Select-Blank-Value-Using-Trigger/m-p/593409#M547132</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;find below an example where I could select two values along with the blank&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;("b"|"f"|"")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try it after changing your intended values&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Feb 2014 12:27:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/To-Select-Blank-Value-Using-Trigger/m-p/593409#M547132</guid>
      <dc:creator />
      <dc:date>2014-02-17T12:27:12Z</dc:date>
    </item>
    <item>
      <title>Re: Re: To Select Blank Value Using Trigger</title>
      <link>https://community.qlik.com/t5/QlikView/To-Select-Blank-Value-Using-Trigger/m-p/593410#M547133</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 have attached the sample.&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Kindly help.&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Vinitha Mano R.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Feb 2014 12:38:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/To-Select-Blank-Value-Using-Trigger/m-p/593410#M547133</guid>
      <dc:creator />
      <dc:date>2014-02-17T12:38:03Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Re: To Select Blank Value Using Trigger</title>
      <link>https://community.qlik.com/t5/QlikView/To-Select-Blank-Value-Using-Trigger/m-p/593411#M547134</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the sample.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check the triggers in sheet properties onActivateSheet for the selection when entering the sheet and OnLeaveSheet for the selection when leaving the sheet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sajeevan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Feb 2014 12:45:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/To-Select-Blank-Value-Using-Trigger/m-p/593411#M547134</guid>
      <dc:creator />
      <dc:date>2014-02-17T12:45:32Z</dc:date>
    </item>
    <item>
      <title>Re: Re: To Select Blank Value Using Trigger</title>
      <link>https://community.qlik.com/t5/QlikView/To-Select-Blank-Value-Using-Trigger/m-p/593412#M547135</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;Thank you for your help. It works fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Vinitha Mano R.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Feb 2014 05:59:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/To-Select-Blank-Value-Using-Trigger/m-p/593412#M547135</guid>
      <dc:creator />
      <dc:date>2014-02-18T05:59:49Z</dc:date>
    </item>
    <item>
      <title>Re: Re: To Select Blank Value Using Trigger</title>
      <link>https://community.qlik.com/t5/QlikView/To-Select-Blank-Value-Using-Trigger/m-p/593413#M547136</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the update. Please mark this as resolved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sajeevan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Feb 2014 06:03:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/To-Select-Blank-Value-Using-Trigger/m-p/593413#M547136</guid>
      <dc:creator />
      <dc:date>2014-02-18T06:03:49Z</dc:date>
    </item>
  </channel>
</rss>

