<?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: how to filter the data with where condition in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/how-to-filter-the-data-with-where-condition/m-p/847103#M995862</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;Load 'AllFieldsYouNeed',&lt;/P&gt;&lt;P&gt;Date(MonthStart('YourDateField'), 'MMM-YYYY') as [MMM-YYYY]&lt;/P&gt;&lt;P&gt;from TableName&lt;/P&gt;&lt;P&gt;where&amp;nbsp; [MMM-YYYY] &amp;gt; Jun-2003 and [MMM-YYYY] &amp;lt;May-2004;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 30 Jun 2015 08:35:22 GMT</pubDate>
    <dc:creator>vcanale</dc:creator>
    <dc:date>2015-06-30T08:35:22Z</dc:date>
    <item>
      <title>how to filter the data with where condition</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-filter-the-data-with-where-condition/m-p/847094#M995853</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have FY2001,FY2002,FY2003,FY2004,FY2005 data set,&lt;/P&gt;&lt;P&gt;how can i get FY 2003 to FY 2004.......with the help of Where condition&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Madhu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Jun 2015 06:07:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-filter-the-data-with-where-condition/m-p/847094#M995853</guid>
      <dc:creator>madhubabum</dc:creator>
      <dc:date>2015-06-30T06:07:49Z</dc:date>
    </item>
    <item>
      <title>Re: how to filter the data with where condition</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-filter-the-data-with-where-condition/m-p/847095#M995854</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you want at script level&lt;/P&gt;&lt;P&gt;Load * From TableName Where WildMatch(Year,'*2003',*2004);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want at front end&lt;/P&gt;&lt;P&gt;Something like below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUM({&amp;lt;Year = {'*2003','*2004'}&amp;gt;}Sales)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Jun 2015 06:10:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-filter-the-data-with-where-condition/m-p/847095#M995854</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2015-06-30T06:10:53Z</dc:date>
    </item>
    <item>
      <title>Re: how to filter the data with where condition</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-filter-the-data-with-where-condition/m-p/847096#M995855</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Madhu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Where wildmatch(Year,'FY2003','*2004');&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Garry&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Jun 2015 06:10:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-filter-the-data-with-where-condition/m-p/847096#M995855</guid>
      <dc:creator />
      <dc:date>2015-06-30T06:10:55Z</dc:date>
    </item>
    <item>
      <title>Re: how to filter the data with where condition</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-filter-the-data-with-where-condition/m-p/847097#M995856</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Load *&amp;nbsp; From …..&amp;nbsp;&amp;nbsp; WHERE Match(Year, ‘2003’, ‘2004’)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Jun 2015 06:14:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-filter-the-data-with-where-condition/m-p/847097#M995856</guid>
      <dc:creator>jsingh71</dc:creator>
      <dc:date>2015-06-30T06:14:58Z</dc:date>
    </item>
    <item>
      <title>Re: how to filter the data with where condition</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-filter-the-data-with-where-condition/m-p/847098#M995857</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi jsingh&lt;/P&gt;&lt;P&gt; Thanks to ur reply&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to filter the data from "June-2003" to "may-2004"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Jun 2015 06:18:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-filter-the-data-with-where-condition/m-p/847098#M995857</guid>
      <dc:creator>madhubabum</dc:creator>
      <dc:date>2015-06-30T06:18:18Z</dc:date>
    </item>
    <item>
      <title>Re: how to filter the data with where condition</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-filter-the-data-with-where-condition/m-p/847099#M995858</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Madhu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load .... From ..... where Year&amp;gt;2003; this will give year from 2003 to......&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Jun 2015 06:19:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-filter-the-data-with-where-condition/m-p/847099#M995858</guid>
      <dc:creator />
      <dc:date>2015-06-30T06:19:10Z</dc:date>
    </item>
    <item>
      <title>Re: how to filter the data with where condition</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-filter-the-data-with-where-condition/m-p/847100#M995859</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what is your Date field? Is there a field is available which contains values like June-2003, July-2003 and so on?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Jun 2015 06:31:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-filter-the-data-with-where-condition/m-p/847100#M995859</guid>
      <dc:creator>jsingh71</dc:creator>
      <dc:date>2015-06-30T06:31:34Z</dc:date>
    </item>
    <item>
      <title>Re: how to filter the data with where condition</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-filter-the-data-with-where-condition/m-p/847101#M995860</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Or share some sample data so its easy for us to give you correct solution.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Jun 2015 06:35:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-filter-the-data-with-where-condition/m-p/847101#M995860</guid>
      <dc:creator>jsingh71</dc:creator>
      <dc:date>2015-06-30T06:35:12Z</dc:date>
    </item>
    <item>
      <title>Re: how to filter the data with where condition</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-filter-the-data-with-where-condition/m-p/847102#M995861</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Madhu,&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;if you need to display 2003 &amp;amp; 2004 data at front end. Try &lt;/SPAN&gt;&lt;STRONG style="color: #3d3d3d; font-family: inherit; line-height: 1.5em; font-style: inherit; font-size: 11.6999998092651px;"&gt;&lt;A href="https://community.qlik.com/people/MRKachhiaIMP"&gt;MRKachhiaIMP&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt; Second suggestion.It will works.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Jun 2015 06:37:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-filter-the-data-with-where-condition/m-p/847102#M995861</guid>
      <dc:creator>krishna20</dc:creator>
      <dc:date>2015-06-30T06:37:24Z</dc:date>
    </item>
    <item>
      <title>Re: how to filter the data with where condition</title>
      <link>https://community.qlik.com/t5/QlikView/how-to-filter-the-data-with-where-condition/m-p/847103#M995862</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;Load 'AllFieldsYouNeed',&lt;/P&gt;&lt;P&gt;Date(MonthStart('YourDateField'), 'MMM-YYYY') as [MMM-YYYY]&lt;/P&gt;&lt;P&gt;from TableName&lt;/P&gt;&lt;P&gt;where&amp;nbsp; [MMM-YYYY] &amp;gt; Jun-2003 and [MMM-YYYY] &amp;lt;May-2004;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Jun 2015 08:35:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/how-to-filter-the-data-with-where-condition/m-p/847103#M995862</guid>
      <dc:creator>vcanale</dc:creator>
      <dc:date>2015-06-30T08:35:22Z</dc:date>
    </item>
  </channel>
</rss>

