<?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: Custom date range filters in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Custom-date-range-filters/m-p/1381000#M31395</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much. This accomplishes exactly what I was looking for.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 02 Oct 2017 21:17:41 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2017-10-02T21:17:41Z</dc:date>
    <item>
      <title>Custom date range filters</title>
      <link>https://community.qlik.com/t5/App-Development/Custom-date-range-filters/m-p/1380996#M31391</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a table that I would like to assign three custom filters to: 30 day, 60 day, and 90 day. Is this possible to do purely through a custom field in the filter pane?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Oct 2017 19:50:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Custom-date-range-filters/m-p/1380996#M31391</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-10-02T19:50:42Z</dc:date>
    </item>
    <item>
      <title>Re: Custom date range filters</title>
      <link>https://community.qlik.com/t5/App-Development/Custom-date-range-filters/m-p/1380997#M31392</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes it is possible for example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sum({&amp;lt;Date = {"&amp;gt;=$(=Max(Date)-30)"}&amp;gt;}Sales)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will give the sales for last 30 days.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kaushik Solanki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Oct 2017 20:45:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Custom-date-range-filters/m-p/1380997#M31392</guid>
      <dc:creator>kaushiknsolanki</dc:creator>
      <dc:date>2017-10-02T20:45:33Z</dc:date>
    </item>
    <item>
      <title>Re: Custom date range filters</title>
      <link>https://community.qlik.com/t5/App-Development/Custom-date-range-filters/m-p/1380998#M31393</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your reply. Your code would give me the sum of sales for the last 30 days. What I am looking for is a filter that would adjust the whole table and have 30 days, 60 days, and 90 days as options.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Oct 2017 20:49:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Custom-date-range-filters/m-p/1380998#M31393</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-10-02T20:49:28Z</dc:date>
    </item>
    <item>
      <title>Re: Custom date range filters</title>
      <link>https://community.qlik.com/t5/App-Development/Custom-date-range-filters/m-p/1380999#M31394</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In that case you will have to create in script like below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load *,Date,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If((Today()-Date) &amp;lt;=30,'30 Days', &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If((Today()-Date) &amp;gt;30 and (Today()-Date) &amp;lt;=60,'60 Days' ,&lt;/P&gt;&lt;P&gt;If((Today()-Date) &amp;gt;60 and (Today()-Date) &amp;lt;=90,'90 Days' ,'More than 90 days'))) as Bucket&lt;/P&gt;&lt;P&gt;From xyz;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use this bucket field as filter or dimension.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kaushik Solanki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Oct 2017 20:55:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Custom-date-range-filters/m-p/1380999#M31394</guid>
      <dc:creator>kaushiknsolanki</dc:creator>
      <dc:date>2017-10-02T20:55:06Z</dc:date>
    </item>
    <item>
      <title>Re: Custom date range filters</title>
      <link>https://community.qlik.com/t5/App-Development/Custom-date-range-filters/m-p/1381000#M31395</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much. This accomplishes exactly what I was looking for.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Oct 2017 21:17:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Custom-date-range-filters/m-p/1381000#M31395</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-10-02T21:17:41Z</dc:date>
    </item>
  </channel>
</rss>

