<?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 Exclude object form selection / filter in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Exclude-object-form-selection-filter/m-p/696929#M251730</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to exclude an object (line chart) from a selection (i.e. the year). If the year is 2013 or earlier then I use static data, if the year is 2013 or later the variable is calculated by cost divided by number of FTEs. Regardless of the year selected, I want to see all the years in the line chart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt; if(year&amp;lt;2013, &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;(ALT( sum({1}{ &amp;lt;Year= &amp;gt;}[TCO per fte]), 0) ),&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(ALT( sum({ &amp;lt;Jaar = &amp;gt;} Total cost part A, 0) + (ALT( sum({ &amp;lt;Jaar = &amp;gt;} (Total costs part B)))))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ALT( sum({ &amp;lt;Year= &amp;gt;} ([Total fte]))))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 18 Aug 2014 13:41:04 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-08-18T13:41:04Z</dc:date>
    <item>
      <title>Exclude object form selection / filter</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-object-form-selection-filter/m-p/696929#M251730</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to exclude an object (line chart) from a selection (i.e. the year). If the year is 2013 or earlier then I use static data, if the year is 2013 or later the variable is calculated by cost divided by number of FTEs. Regardless of the year selected, I want to see all the years in the line chart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt; if(year&amp;lt;2013, &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;(ALT( sum({1}{ &amp;lt;Year= &amp;gt;}[TCO per fte]), 0) ),&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(ALT( sum({ &amp;lt;Jaar = &amp;gt;} Total cost part A, 0) + (ALT( sum({ &amp;lt;Jaar = &amp;gt;} (Total costs part B)))))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ALT( sum({ &amp;lt;Year= &amp;gt;} ([Total fte]))))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Aug 2014 13:41:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-object-form-selection-filter/m-p/696929#M251730</guid>
      <dc:creator />
      <dc:date>2014-08-18T13:41:04Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude object form selection / filter</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-object-form-selection-filter/m-p/696930#M251731</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just add the second set of criteria using another if() statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(year&amp;lt;2013, &lt;/P&gt;&lt;P&gt;(ALT( sum({1}{ &amp;lt;Year= &amp;gt;}[TCO per fte]), 0) ),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(year&amp;gt;=2013&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; (ALT( sum({1}{ &amp;lt;Jaar = &amp;gt;} Total cost part A, 0) + (ALT( sum({ &amp;lt;Jaar = &amp;gt;} (Total costs part B)))))&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; /&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ALT( sum({1}{ &amp;lt;Year= &amp;gt;} ([Total fte]))))&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Aug 2014 14:23:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-object-form-selection-filter/m-p/696930#M251731</guid>
      <dc:creator />
      <dc:date>2014-08-18T14:23:09Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude object form selection / filter</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-object-form-selection-filter/m-p/696931#M251732</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;unfortunately; this isn't working. If I make a selection on "year" this still has an effect on the chartline. Only selected years are shown, and I wanted to see all years.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(Year&amp;lt;2013, &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;(ALT( sum({1}{ &amp;lt;Year= &amp;gt;}[TCO per fte]), 0) ),&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(Year&amp;gt;=2013,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(ALT( sum({1}{ &amp;lt;Year= &amp;gt;} Total cost part A), 0) + (ALT( sum({1}{ &amp;lt;Year= &amp;gt;} (Total cost part B)))))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ALT( sum({1}{ &amp;lt;Year= &amp;gt;} ([Total fte])))))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Aug 2014 14:52:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-object-form-selection-filter/m-p/696931#M251732</guid>
      <dc:creator />
      <dc:date>2014-08-18T14:52:49Z</dc:date>
    </item>
  </channel>
</rss>

