<?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: Making Filter Panes Static (?) in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Making-Filter-Panes-Static/m-p/1588008#M43037</link>
    <description>&lt;P&gt;The Aggr() is responding to selections. If you are using a recent version of QS, then add a filter override to Aggr() as well&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;= Date(&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;Aggr({1}&lt;/STRONG&gt;&lt;/FONT&gt; Only( { 1&amp;lt;ActivityDate={"&amp;gt;=$(=Timestamp(YearStart(Now(), 0,11)))&amp;lt;=$(=Timestamp(Now()))"}&amp;gt; * &amp;lt;ActivityDate= {"=num(weekday(ActivityDate))=0"} &amp;gt;} ActivityDate), ActivityDate),'MM/DD/YYYY')&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 04 Jun 2019 10:07:59 GMT</pubDate>
    <dc:creator>jonathandienst</dc:creator>
    <dc:date>2019-06-04T10:07:59Z</dc:date>
    <item>
      <title>Making Filter Panes Static (?)</title>
      <link>https://community.qlik.com/t5/App-Development/Making-Filter-Panes-Static/m-p/1587787#M43028</link>
      <description>&lt;P&gt;I'm somewhat new to Qlik Sense, having gone through training, and now building my second application.&amp;nbsp;&amp;nbsp; I have two filter panes designed to show all the Sundays in current fiscal year, and previous fiscal year, respectively. &amp;nbsp; The field is "ActivityDate".&amp;nbsp; They are both working as far as showing the correct dates.&amp;nbsp; However, I want them both to ignore any other filters/selections.&amp;nbsp; I also have another filter pane on an "ActivityType" field.&amp;nbsp; I want that to ignore any other filters/selections as well.&amp;nbsp;&amp;nbsp; The expressions in the filter pane dimensions are as follows:&lt;/P&gt;&lt;P&gt;Current Fiscal Year Sundays&lt;/P&gt;&lt;P&gt;= Date(Aggr(Only( { &amp;lt;ActivityDate={"&amp;gt;=$(=Timestamp(YearStart(Now(), 0,11)))&amp;lt;=$(=Timestamp(Now()))"}&amp;gt; * &amp;lt;ActivityDate= {"=num(weekday(ActivityDate))=0"} &amp;gt;} ActivityDate), ActivityDate),'MM/DD/YYYY')&lt;/P&gt;&lt;P&gt;Previous Fiscal Year Sundays&lt;/P&gt;&lt;P&gt;= Date(Aggr(Only( { &amp;lt;ActivityDate={"&amp;gt;=$(=Timestamp(YearStart(AddMonths(Now(),-12), 0,11)))&amp;lt;=$(=Timestamp(AddMonths(Now(),-12)))"}&amp;gt; * &amp;lt;ActivityDate= {"=num(weekday(ActivityDate))=0"}&amp;gt; } ActivityDate), ActivityDate),'MM/DD/YYYY')&lt;/P&gt;&lt;P&gt;Type&lt;/P&gt;&lt;P&gt;=aggr( only ( {&amp;lt;ActivityType={'Agreement TBI','Settlement'}&amp;gt;} if(ActivityType='Agreement TBI','Sales',ActivityType) ), ActivityType)&lt;/P&gt;&lt;P&gt;These expressions work fine, but when I put a 1 in front of the set, they don't ignore selections like I want them to. Examples:&lt;/P&gt;&lt;P&gt;= Date(Aggr(Only( { 1&amp;lt;ActivityDate={"&amp;gt;=$(=Timestamp(YearStart(Now(), 0,11)))&amp;lt;=$(=Timestamp(Now()))"}&amp;gt; * &amp;lt;ActivityDate= {"=num(weekday(ActivityDate))=0"} &amp;gt;} ActivityDate), ActivityDate),'MM/DD/YYYY')&lt;/P&gt;&lt;P&gt;=aggr( only ( {1&amp;lt;ActivityType={'Agreement TBI','Settlement'}&amp;gt;} if(ActivityType='Agreement TBI','Sales',ActivityType) ), ActivityType)&lt;/P&gt;&lt;P&gt;Is there something I am missing here?&amp;nbsp; What am I doing wrong?&lt;/P&gt;</description>
      <pubDate>Mon, 03 Jun 2019 19:41:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Making-Filter-Panes-Static/m-p/1587787#M43028</guid>
      <dc:creator>TBQlikNewbi</dc:creator>
      <dc:date>2019-06-03T19:41:59Z</dc:date>
    </item>
    <item>
      <title>Re: Making Filter Panes Static (?)</title>
      <link>https://community.qlik.com/t5/App-Development/Making-Filter-Panes-Static/m-p/1587992#M43035</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;You want filter panes that do not respond to filtering? This is the way Qlik is build and dashboards will always (unless you lock it with set analysis) to your selections.&lt;/P&gt;&lt;P&gt;Jordy&lt;/P&gt;&lt;P&gt;Climber&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jun 2019 09:38:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Making-Filter-Panes-Static/m-p/1587992#M43035</guid>
      <dc:creator>JordyWegman</dc:creator>
      <dc:date>2019-06-04T09:38:13Z</dc:date>
    </item>
    <item>
      <title>Re: Making Filter Panes Static (?)</title>
      <link>https://community.qlik.com/t5/App-Development/Making-Filter-Panes-Static/m-p/1588008#M43037</link>
      <description>&lt;P&gt;The Aggr() is responding to selections. If you are using a recent version of QS, then add a filter override to Aggr() as well&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;= Date(&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;Aggr({1}&lt;/STRONG&gt;&lt;/FONT&gt; Only( { 1&amp;lt;ActivityDate={"&amp;gt;=$(=Timestamp(YearStart(Now(), 0,11)))&amp;lt;=$(=Timestamp(Now()))"}&amp;gt; * &amp;lt;ActivityDate= {"=num(weekday(ActivityDate))=0"} &amp;gt;} ActivityDate), ActivityDate),'MM/DD/YYYY')&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jun 2019 10:07:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Making-Filter-Panes-Static/m-p/1588008#M43037</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2019-06-04T10:07:59Z</dc:date>
    </item>
    <item>
      <title>Re: Making Filter Panes Static (?)</title>
      <link>https://community.qlik.com/t5/App-Development/Making-Filter-Panes-Static/m-p/1588647#M43127</link>
      <description>&lt;P&gt;Thanks for your reply.&amp;nbsp; I did try it like you suggested, examples:&lt;/P&gt;&lt;P&gt;1.&lt;BR /&gt;=aggr({1} only ( {1&amp;lt;ActivityType={'Agreement TBI','Settlement'}&amp;gt;} if(ActivityType='Agreement TBI','Sales',ActivityType) ), ActivityType)&lt;/P&gt;&lt;P&gt;2.&lt;/P&gt;&lt;P&gt;=Date(Aggr({1} Only( {1&amp;lt;CurrentFYDate={"&amp;gt;=$(=Timestamp(YearStart(Now(), 0,11)))&amp;lt;=$(=Timestamp(Now()))"}, ActivityDate=&amp;gt; * &amp;lt;CurrentFYDate= {"=num(weekday(ActivityDate))=0"}, ActivityDate= &amp;gt;} CurrentFYDate), CurrentFYDate),'MM/DD/YYYY')&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But this didn't solve the problem.&amp;nbsp; The filter panes are still responding to selections in the other filter panes.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jun 2019 14:25:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Making-Filter-Panes-Static/m-p/1588647#M43127</guid>
      <dc:creator>TBQlikNewbi</dc:creator>
      <dc:date>2019-06-05T14:25:05Z</dc:date>
    </item>
    <item>
      <title>Re: Making Filter Panes Static (?)</title>
      <link>https://community.qlik.com/t5/App-Development/Making-Filter-Panes-Static/m-p/1588853#M43152</link>
      <description>&lt;P&gt;&lt;STRONG&gt;First expression&lt;/STRONG&gt; - i can't see any obvious reason that its still responding to selections,&amp;nbsp; but perhaps the logic can be modified. What values do you expect?&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Second expression&lt;/STRONG&gt;: You need the '1' override on both set expressions&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;gt;&amp;nbsp;* &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;1&lt;/STRONG&gt;&lt;/FONT&gt;&amp;lt;CurrentFYDate = ...&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;This search expression&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;1&lt;/FONT&gt;&lt;/STRONG&gt;&amp;lt;CurrentFYDate = {"=num(weekday(ActivityDate))=0"}&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;might be responding to selections. You might be better off setting a flag in the reload script rather than using&amp;nbsp; this search expression.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jun 2019 07:38:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Making-Filter-Panes-Static/m-p/1588853#M43152</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2019-06-06T07:38:59Z</dc:date>
    </item>
    <item>
      <title>Re: Making Filter Panes Static (?)</title>
      <link>https://community.qlik.com/t5/App-Development/Making-Filter-Panes-Static/m-p/1590500#M43347</link>
      <description>&lt;P&gt;We solved this by adjusting our data model.&amp;nbsp;&amp;nbsp; Eventually, I had to load the same table with the desired date field twice.&amp;nbsp; Then used the now two separate date fields in&amp;nbsp; he two filter panes, and filter one for Current FY Sundays, the other one for Previous FY Sundays.&amp;nbsp; That is the only way I could get the two filter panes to ignore each other's selections. &amp;nbsp; Using a 1 in set analysis wouldn't do it for filter panes, although it does work in other measure expressions on the sheet.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jun 2019 13:51:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Making-Filter-Panes-Static/m-p/1590500#M43347</guid>
      <dc:creator>TBQlikNewbi</dc:creator>
      <dc:date>2019-06-11T13:51:13Z</dc:date>
    </item>
    <item>
      <title>Re: Making Filter Panes Static (?)</title>
      <link>https://community.qlik.com/t5/App-Development/Making-Filter-Panes-Static/m-p/1590501#M43348</link>
      <description>&lt;P&gt;Thanks for your suggestions and help, I/we were able to solve it with a data model change.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jun 2019 13:53:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Making-Filter-Panes-Static/m-p/1590501#M43348</guid>
      <dc:creator>TBQlikNewbi</dc:creator>
      <dc:date>2019-06-11T13:53:37Z</dc:date>
    </item>
  </channel>
</rss>

