<?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: Dyanmic Filter in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Dyanmic-Filter/m-p/1634013#M446669</link>
    <description>&lt;P&gt;&lt;SPAN&gt;This option contemplates the possibility of selecting more than one value in the &lt;STRONG&gt;Year&lt;/STRONG&gt; field.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Note: if the format applied by the &lt;STRONG&gt;Num&lt;/STRONG&gt; function is not displayed properly, change the period with a comma.&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;If(GetSelectedCount([Year]) = 0 Or GetSelectedCount([Year]) = Count({1} distinct [Year]), 
	'TOTAL SALES ', 'Sales for ' &amp;amp; Concat(distinct [Year], ', ')) &amp;amp; Chr(10) &amp;amp; Num(Sum([Sales]), '$ #.##0')&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 11 Oct 2019 03:26:39 GMT</pubDate>
    <dc:creator>JGMDataAnalysis</dc:creator>
    <dc:date>2019-10-11T03:26:39Z</dc:date>
    <item>
      <title>Dyanmic Filter</title>
      <link>https://community.qlik.com/t5/QlikView/Dyanmic-Filter/m-p/1631386#M446486</link>
      <description>&lt;P&gt;Requirement: I want to show the text "TOTAL SALES" if no filter selected &amp;amp; if any filter selected show the dynamic text as&amp;nbsp; Image1 ie (Sales for 2014 $123) , Is there any workaround to embed the two dynamic text in one text object, if we are not selecting any filter the text won't change as per the requirement (Image 2 )&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Example&lt;/P&gt;&lt;P&gt;1)If no filter is selected show "TOTAL SALES $123"&lt;/P&gt;&lt;P&gt;2)If 2014 selected show "Sales for 2014 $123"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kindly share your inputs.&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Image1.PNG" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/20673i061DBAE22B13CE88/image-size/large?v=v2&amp;amp;px=999" role="button" title="Image1.PNG" alt="Image1.PNG" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Image2.PNG" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/20674i971BE14ABAC9F901/image-size/large?v=v2&amp;amp;px=999" role="button" title="Image2.PNG" alt="Image2.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Oct 2019 09:08:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dyanmic-Filter/m-p/1631386#M446486</guid>
      <dc:creator>Akshay2015</dc:creator>
      <dc:date>2019-10-04T09:08:54Z</dc:date>
    </item>
    <item>
      <title>Re: Dyanmic Filter</title>
      <link>https://community.qlik.com/t5/QlikView/Dyanmic-Filter/m-p/1633923#M446664</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Akshay, I think the best way to go at this one is two objects that are set to sit in the same space and use conditional show condition to show the one you want based upon whether or not there is a selection in your field...&amp;nbsp; Actually found a design blog post that may help here:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Design-Blog/Enhancing-the-User-Experience-Using-Conditional-Expressions/ba-p/1472583" target="_blank"&gt;https://community.qlik.com/t5/Qlik-Design-Blog/Enhancing-the-User-Experience-Using-Conditional-Expressions/ba-p/1472583&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Regards,&lt;BR /&gt;Brett&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Oct 2019 18:46:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dyanmic-Filter/m-p/1633923#M446664</guid>
      <dc:creator>Brett_Bleess</dc:creator>
      <dc:date>2019-10-10T18:46:07Z</dc:date>
    </item>
    <item>
      <title>Re: Dyanmic Filter</title>
      <link>https://community.qlik.com/t5/QlikView/Dyanmic-Filter/m-p/1633937#M446666</link>
      <description>&lt;P&gt;May be using an If statement?&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;If(GetSelectedCount(Year) = 0, 'TOTAL SALES ', 'Sales for ' &amp;amp; Year)
&amp;amp;
Money(Sum(Sales))&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Oct 2019 19:03:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dyanmic-Filter/m-p/1633937#M446666</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2019-10-10T19:03:02Z</dc:date>
    </item>
    <item>
      <title>Re: Dyanmic Filter</title>
      <link>https://community.qlik.com/t5/QlikView/Dyanmic-Filter/m-p/1634013#M446669</link>
      <description>&lt;P&gt;&lt;SPAN&gt;This option contemplates the possibility of selecting more than one value in the &lt;STRONG&gt;Year&lt;/STRONG&gt; field.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Note: if the format applied by the &lt;STRONG&gt;Num&lt;/STRONG&gt; function is not displayed properly, change the period with a comma.&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;If(GetSelectedCount([Year]) = 0 Or GetSelectedCount([Year]) = Count({1} distinct [Year]), 
	'TOTAL SALES ', 'Sales for ' &amp;amp; Concat(distinct [Year], ', ')) &amp;amp; Chr(10) &amp;amp; Num(Sum([Sales]), '$ #.##0')&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Oct 2019 03:26:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dyanmic-Filter/m-p/1634013#M446669</guid>
      <dc:creator>JGMDataAnalysis</dc:creator>
      <dc:date>2019-10-11T03:26:39Z</dc:date>
    </item>
  </channel>
</rss>

