<?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: Qlik Sense Filters Selections Jumping/Skipping Scnearios (Example: Years Filter) in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Qlik-Sense-Filters-Selections-Jumping-Skipping-Scnearios-Example/m-p/1587257#M42986</link>
    <description>Hello Yogiachilleos,&lt;BR /&gt;Yes this a fun thing, thank for you response.&lt;BR /&gt;it did actually worked for 'Years' and working as expected almost, i just need to do some changes but logic will for sure..i should work on the same for 'Quarters' (Q1,Q2,Q3,Q4) , but should work on to come up with different approach as these are not Straight Numbers</description>
    <pubDate>Fri, 31 May 2019 18:31:07 GMT</pubDate>
    <dc:creator>QlikEnth</dc:creator>
    <dc:date>2019-05-31T18:31:07Z</dc:date>
    <item>
      <title>Qlik Sense Filters Selections Jumping/Skipping Scnearios (Example: Years Filter)</title>
      <link>https://community.qlik.com/t5/App-Development/Qlik-Sense-Filters-Selections-Jumping-Skipping-Scnearios-Example/m-p/1587186#M42981</link>
      <description>&lt;P&gt;Hello Experts,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to achieve a functionality in Qlik Sense Sheet. i have a year Filter Pane in a sheet (Year-2015,2016,2017,2018), if a user select Jumping/Skipping a year (Selections Example -2015,2017,2018..Skipping 2016 OR Selections Example -2015,2018..Skipping 2016,2017 IT SHOULD SHOW ERROR),&lt;/P&gt;&lt;P&gt;My CHART should show error, we can achieve the error message if nothing is selected using the if condition with Something like ""If(len(GetFieldSelections(Year))=0,'Error')"" but wondering how we can deal with the Jumping/Skipping Scenarios like above.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 20:44:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlik-Sense-Filters-Selections-Jumping-Skipping-Scnearios-Example/m-p/1587186#M42981</guid>
      <dc:creator>QlikEnth</dc:creator>
      <dc:date>2024-11-16T20:44:55Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense Filters Selections Jumping/Skipping Scnearios (Example: Years Filter)</title>
      <link>https://community.qlik.com/t5/App-Development/Qlik-Sense-Filters-Selections-Jumping-Skipping-Scnearios-Example/m-p/1587235#M42983</link>
      <description>&lt;P&gt;Howdy Ankithreddy!&lt;/P&gt;&lt;P&gt;This is a fun problem! You can do =if(min(Year) + (getselectedcount(Year)-1) &amp;lt;&amp;gt; max(Year), 'Error', '')&lt;/P&gt;&lt;P&gt;The math works like this 2014, 2015, 2016, 2017.&lt;/P&gt;&lt;P&gt;Min(Year) = 2014&lt;/P&gt;&lt;P&gt;Max(Year) = 2017&lt;/P&gt;&lt;P&gt;GetSelectedCount(Year) = 4&lt;/P&gt;&lt;P&gt;2014 + (4 - 1) = 2017. No error will be shown.&lt;/P&gt;&lt;P&gt;Hope this helps!&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Yogi Achilleos&lt;/P&gt;</description>
      <pubDate>Fri, 31 May 2019 17:04:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlik-Sense-Filters-Selections-Jumping-Skipping-Scnearios-Example/m-p/1587235#M42983</guid>
      <dc:creator>yogiachilleos</dc:creator>
      <dc:date>2019-05-31T17:04:51Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense Filters Selections Jumping/Skipping Scnearios (Example: Years Filter)</title>
      <link>https://community.qlik.com/t5/App-Development/Qlik-Sense-Filters-Selections-Jumping-Skipping-Scnearios-Example/m-p/1587257#M42986</link>
      <description>Hello Yogiachilleos,&lt;BR /&gt;Yes this a fun thing, thank for you response.&lt;BR /&gt;it did actually worked for 'Years' and working as expected almost, i just need to do some changes but logic will for sure..i should work on the same for 'Quarters' (Q1,Q2,Q3,Q4) , but should work on to come up with different approach as these are not Straight Numbers</description>
      <pubDate>Fri, 31 May 2019 18:31:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlik-Sense-Filters-Selections-Jumping-Skipping-Scnearios-Example/m-p/1587257#M42986</guid>
      <dc:creator>QlikEnth</dc:creator>
      <dc:date>2019-05-31T18:31:07Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense Filters Selections Jumping/Skipping Scnearios (Example: Years Filter)</title>
      <link>https://community.qlik.com/t5/App-Development/Qlik-Sense-Filters-Selections-Jumping-Skipping-Scnearios-Example/m-p/1587280#M42988</link>
      <description>&lt;P&gt;Quarters are even more fun! Lol but you need to do some script work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Temp:&lt;/P&gt;&lt;P&gt;Load Distinct&lt;/P&gt;&lt;P&gt;Year,&lt;/P&gt;&lt;P&gt;Quarter&lt;/P&gt;&lt;P&gt;Resident Calendar&lt;/P&gt;&lt;P&gt;Order by Year, Quarter Asc;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Left Join (Calendar)&lt;/P&gt;&lt;P&gt;Load *,&lt;/P&gt;&lt;P&gt;rowno() as QuarterID&lt;/P&gt;&lt;P&gt;Resident Temp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Drop Table Temp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then you can use a similar formula as the one above for year but on QuarterID! (You'll have to use getPossibleCount() instead of getSelectedCount() )&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Yogi Achilleos&lt;/P&gt;</description>
      <pubDate>Fri, 31 May 2019 20:04:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlik-Sense-Filters-Selections-Jumping-Skipping-Scnearios-Example/m-p/1587280#M42988</guid>
      <dc:creator>yogiachilleos</dc:creator>
      <dc:date>2019-05-31T20:04:02Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense Filters Selections Jumping/Skipping Scnearios (Example: Years Filter)</title>
      <link>https://community.qlik.com/t5/App-Development/Qlik-Sense-Filters-Selections-Jumping-Skipping-Scnearios-Example/m-p/1587293#M42990</link>
      <description>I'm thinking of a more general validation valid for all period dimensions something like this.&lt;BR /&gt;=If(Count({&amp;lt;DateField=E(DateField)*{"&amp;lt;$(=MAX(DateField))&amp;gt;$(=MIN(DateField)"}&amp;gt;}DateField) &amp;gt;0, 'Check your selections')&lt;BR /&gt;&lt;BR /&gt;I haven't checked if it will work, but they idea is to count all excluded dates that lies within the interval between the min available date and the max available date. This will work on both selections in years, quarters, months, weeks and dates.&lt;BR /&gt;&lt;BR /&gt;Please let me know if you try and if it behaves as intended.&lt;BR /&gt;&lt;BR /&gt;-Vegar</description>
      <pubDate>Fri, 31 May 2019 22:28:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlik-Sense-Filters-Selections-Jumping-Skipping-Scnearios-Example/m-p/1587293#M42990</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2019-05-31T22:28:22Z</dc:date>
    </item>
  </channel>
</rss>

