<?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: Filter in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Filter/m-p/1055517#M16743</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot for reply&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The date is in number values. Please find the attached sanpshot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Date is in date time format which includes the data from 2010 to 2015.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have used the MONTHNAME("DATE") function to convert it in to the Months.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Question is I want to filter the dates greater than 2015 in the table only. If I used in the script it leads to filter out in every chart and table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know if it is making sense&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Deepanshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 09 Jan 2016 06:55:41 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2016-01-09T06:55:41Z</dc:date>
    <item>
      <title>Filter</title>
      <link>https://community.qlik.com/t5/App-Development/Filter/m-p/1055515#M16741</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please help me in this scenario&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have “CreatedDate” column in the data set i.e. 2014-02-04 09:40:00.000000, 2014-02-04 09:50:00.000000, 2014-02-04&lt;/P&gt;&lt;P&gt;16:40:00.000000 and so on.&amp;nbsp; I want to filter in the CreatedDate &amp;gt; 2015-01-01 in the script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Deepanshu Chamoli&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Jan 2016 18:02:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Filter/m-p/1055515#M16741</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-01-08T18:02:48Z</dc:date>
    </item>
    <item>
      <title>Re: Filter</title>
      <link>https://community.qlik.com/t5/App-Development/Filter/m-p/1055516#M16742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In general you use a WHERE clause to filter data when loading data in a new table:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MyTable&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FieldA,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FieldB,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CreatedDate,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...other fields&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MySource&lt;/P&gt;&lt;P&gt;WHERE&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CreatedDate &amp;gt; makedate(2015)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Whether that works or not depends on the contents of the CreatedDate field. If it contains text strings then it won't work. If it contains date values (i.e. numbers) then it will work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Jan 2016 18:59:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Filter/m-p/1055516#M16742</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2016-01-08T18:59:58Z</dc:date>
    </item>
    <item>
      <title>Re: Filter</title>
      <link>https://community.qlik.com/t5/App-Development/Filter/m-p/1055517#M16743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot for reply&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The date is in number values. Please find the attached sanpshot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Date is in date time format which includes the data from 2010 to 2015.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have used the MONTHNAME("DATE") function to convert it in to the Months.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Question is I want to filter the dates greater than 2015 in the table only. If I used in the script it leads to filter out in every chart and table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know if it is making sense&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Deepanshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 09 Jan 2016 06:55:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Filter/m-p/1055517#M16743</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-01-09T06:55:41Z</dc:date>
    </item>
    <item>
      <title>Re: Filter</title>
      <link>https://community.qlik.com/t5/App-Development/Filter/m-p/1055518#M16744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;First create a bookmark for the selection of the dates or months that you want to see in the chart. Then change the expressions in your chart to make use of the bookmark. For example Sum(Amount) becomes Sum({&lt;EM&gt;BookMarkNameHere&lt;/EM&gt;}Amount). Replace BookMarkNameHere with the name of the bookmark you created.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 09 Jan 2016 17:26:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Filter/m-p/1055518#M16744</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2016-01-09T17:26:22Z</dc:date>
    </item>
  </channel>
</rss>

