<?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 expression help in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/expression-help/m-p/1325834#M824523</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;The below expression doesn't work when there is space in the value.&lt;/P&gt;&lt;P&gt;eg- United States.&lt;/P&gt;&lt;P&gt;But works for all other values, eg- India, France, UK etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF(GetSelectedCount(Country),'('&amp;amp;Concat(DISTINCT Country,'|') &amp;amp; ')','')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please note that i have onSelect Trigger in the document settings. Here is the attached app. The purpose of trigger is to select fields that are unlinked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
    <dc:creator>surajap123</dc:creator>
    <dc:date>2020-11-25T16:16:04Z</dc:date>
    <item>
      <title>expression help</title>
      <link>https://community.qlik.com/t5/QlikView/expression-help/m-p/1325834#M824523</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;The below expression doesn't work when there is space in the value.&lt;/P&gt;&lt;P&gt;eg- United States.&lt;/P&gt;&lt;P&gt;But works for all other values, eg- India, France, UK etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF(GetSelectedCount(Country),'('&amp;amp;Concat(DISTINCT Country,'|') &amp;amp; ')','')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please note that i have onSelect Trigger in the document settings. Here is the attached app. The purpose of trigger is to select fields that are unlinked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/expression-help/m-p/1325834#M824523</guid>
      <dc:creator>surajap123</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: expression help</title>
      <link>https://community.qlik.com/t5/QlikView/expression-help/m-p/1325835#M824524</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suraj,&lt;/P&gt;&lt;P&gt;Aren't we missing something in the condition?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Perhaps:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;IF(GetSelectedCount(Country) &lt;STRONG&gt;&amp;gt; 0&lt;/STRONG&gt; ,'('&amp;amp;Concat(DISTINCT Country,'|') &amp;amp; ')','')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Should still work for Countries with spaces in the name. &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/confused.png" /&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Cheers&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Andrew&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Jul 2017 08:32:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/expression-help/m-p/1325835#M824524</guid>
      <dc:creator>effinty2112</dc:creator>
      <dc:date>2017-07-18T08:32:25Z</dc:date>
    </item>
    <item>
      <title>Re: expression help</title>
      <link>https://community.qlik.com/t5/QlikView/expression-help/m-p/1325836#M824525</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;try&lt;/P&gt;&lt;P&gt;IF(GetSelectedCount(Country),'('&amp;amp;Concat(DISTINCT &lt;SPAN style="color: #ff0000;"&gt;Chr(39)&amp;amp;&lt;/SPAN&gt;Country&lt;SPAN style="color: #ff0000;"&gt;&amp;amp;Chr(39),&lt;/SPAN&gt;'|') &amp;amp; ')','')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Jul 2017 08:33:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/expression-help/m-p/1325836#M824525</guid>
      <dc:creator>antoniotiman</dc:creator>
      <dc:date>2017-07-18T08:33:20Z</dc:date>
    </item>
    <item>
      <title>Re: expression help</title>
      <link>https://community.qlik.com/t5/QlikView/expression-help/m-p/1325837#M824527</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suraj,&lt;/P&gt;&lt;P&gt;&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; Are you using the result as a search filter?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andrew&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Jul 2017 08:34:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/expression-help/m-p/1325837#M824527</guid>
      <dc:creator>effinty2112</dc:creator>
      <dc:date>2017-07-18T08:34:33Z</dc:date>
    </item>
    <item>
      <title>Re: expression help</title>
      <link>https://community.qlik.com/t5/QlikView/expression-help/m-p/1325838#M824529</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for all the replies.&lt;/P&gt;&lt;P&gt;I have attached a sample app. I want the selections to happen on other field through Trigger.&lt;/P&gt;&lt;P&gt;This is just to connect both fields that are not linked by tables.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Jul 2017 08:43:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/expression-help/m-p/1325838#M824529</guid>
      <dc:creator>surajap123</dc:creator>
      <dc:date>2017-07-18T08:43:20Z</dc:date>
    </item>
    <item>
      <title>Re: expression help</title>
      <link>https://community.qlik.com/t5/QlikView/expression-help/m-p/1325839#M824530</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Suraj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's a workaround that might work:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=IF(GetSelectedCount(Country) &amp;gt; 0 ,'('&amp;amp; replace(Concat(DISTINCT &lt;SPAN style="font-size: 13.3333px;"&gt;Country&lt;/SPAN&gt;,'|'),' ','?') &amp;amp; ')','')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;found this in the forum from two years ago by a chap called Neil Miller so credit to him if it works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andrew&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Jul 2017 08:47:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/expression-help/m-p/1325839#M824530</guid>
      <dc:creator>effinty2112</dc:creator>
      <dc:date>2017-07-18T08:47:14Z</dc:date>
    </item>
    <item>
      <title>Re: expression help</title>
      <link>https://community.qlik.com/t5/QlikView/expression-help/m-p/1325840#M824531</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you so much for your help Andrew.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Jul 2017 08:57:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/expression-help/m-p/1325840#M824531</guid>
      <dc:creator>surajap123</dc:creator>
      <dc:date>2017-07-18T08:57:06Z</dc:date>
    </item>
  </channel>
</rss>

