<?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 How to filter records in straight table in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-filter-records-in-straight-table/m-p/932362#M957356</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;I have a straight table showing 3 dimensions and 10 Expressions..&lt;/P&gt;&lt;P&gt;Now, I'd like to show only records depending on given condition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In following example, I'd like to show only records where I have "Volumes PY" &amp;lt;&amp;gt; 0 AND "Price gap" &amp;lt;&amp;gt;0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="example1.jpg" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/103846_example1.jpg" /&gt;&lt;/P&gt;&lt;P&gt;Do I need to set these conditions in each Expression?&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;Andrea&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 Nov 2015 09:35:36 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-11-04T09:35:36Z</dc:date>
    <item>
      <title>How to filter records in straight table</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-filter-records-in-straight-table/m-p/932362#M957356</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;I have a straight table showing 3 dimensions and 10 Expressions..&lt;/P&gt;&lt;P&gt;Now, I'd like to show only records depending on given condition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In following example, I'd like to show only records where I have "Volumes PY" &amp;lt;&amp;gt; 0 AND "Price gap" &amp;lt;&amp;gt;0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="example1.jpg" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/103846_example1.jpg" /&gt;&lt;/P&gt;&lt;P&gt;Do I need to set these conditions in each Expression?&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;Andrea&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Nov 2015 09:35:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-filter-records-in-straight-table/m-p/932362#M957356</guid>
      <dc:creator />
      <dc:date>2015-11-04T09:35:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter records in straight table</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-filter-records-in-straight-table/m-p/932363#M957357</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;you could multiply every Expression with "if("Volumes PY" &amp;lt;&amp;gt; 0 AND "Price gap" &amp;lt;&amp;gt;0, 1, 0)" and use "Supress Zero-Values" at the presentation Tab. Or you create a flag in the data model using "if("Volumes PY" &amp;lt;&amp;gt; 0 AND "Price gap" &amp;lt;&amp;gt;0, 1, 0) as flagShowRecord" and multiply every Expression with the flag. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sebastian Lettner&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Nov 2015 10:24:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-filter-records-in-straight-table/m-p/932363#M957357</guid>
      <dc:creator>sebastianlettner</dc:creator>
      <dc:date>2015-11-04T10:24:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter records in straight table</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-filter-records-in-straight-table/m-p/932364#M957358</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;I would add a flag in your data model.&lt;/P&gt;&lt;P&gt;Something like the below &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;IF([Volumes PY] &amp;lt;&amp;gt; 0 AND [Price gap] &amp;lt;&amp;gt;0, &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1, &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; line-height: 1.5em;"&gt;)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AS FLAG,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; line-height: 1.5em;"&gt;Then in the set analysis on each expression Add {&amp;lt;Flag ={1}&amp;gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; line-height: 1.5em;"&gt;i.e.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; line-height: 1.5em;"&gt;SUM(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;{&amp;lt;Flag ={1}&amp;gt;}[Net Sales]&lt;/SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; line-height: 1.5em;"&gt;Hope this helps &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; line-height: 1.5em;"&gt;Mark&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Nov 2015 11:29:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-filter-records-in-straight-table/m-p/932364#M957358</guid>
      <dc:creator>Mark_Little</dc:creator>
      <dc:date>2015-11-04T11:29:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter records in straight table</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-filter-records-in-straight-table/m-p/932365#M957359</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yep Marks solution should work for you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Nov 2015 13:01:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-filter-records-in-straight-table/m-p/932365#M957359</guid>
      <dc:creator>dmac1971</dc:creator>
      <dc:date>2015-11-04T13:01:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter records in straight table</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-filter-records-in-straight-table/m-p/932366#M957360</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mark&lt;/P&gt;&lt;P&gt;thanks for your reply... &lt;/P&gt;&lt;P&gt;I cannot easily (and in a short time...) add a flag to data model and requirement changed to Previous Month instead of Previous Year.. ok that should not be a problem.. &lt;BR /&gt;directly in the chart&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to try to solve it directly in the chart.. if possible&lt;/P&gt;&lt;P&gt;I thought there was an option like Filter where [condition satisfied]..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Nov 2015 13:08:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-filter-records-in-straight-table/m-p/932366#M957360</guid>
      <dc:creator />
      <dc:date>2015-11-04T13:08:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter records in straight table</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-filter-records-in-straight-table/m-p/932367#M957361</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;you can put the condition in the &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;dimensions &lt;/SPAN&gt;also as,&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;if("Volumes PY" &amp;lt;&amp;gt; 0 AND "Price gap" &amp;lt;&amp;gt;0, Plant).&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Nov 2015 13:13:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-filter-records-in-straight-table/m-p/932367#M957361</guid>
      <dc:creator />
      <dc:date>2015-11-04T13:13:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter records in straight table</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-filter-records-in-straight-table/m-p/932368#M957362</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you using Plant as your dimension?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then what &lt;A _jive_internal="true" href="https://community.qlik.com/people/aalsaif1"&gt;aalsaif1&lt;/A&gt;‌ suggested should work for you. use this as your dimension&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;If("Volumes PY" &amp;lt;&amp;gt; 0 and "Price gap" &amp;lt;&amp;gt;0, Plant)&lt;/STRONG&gt; and then check '&lt;STRONG&gt;Suppress When Value Is Null&lt;/STRONG&gt;' option&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Nov 2015 13:20:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-filter-records-in-straight-table/m-p/932368#M957362</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-11-04T13:20:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter records in straight table</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-filter-records-in-straight-table/m-p/932369#M957363</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm using Plant, Customer and Material as dimensions...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Nov 2015 13:47:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-filter-records-in-straight-table/m-p/932369#M957363</guid>
      <dc:creator />
      <dc:date>2015-11-04T13:47:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter records in straight table</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-filter-records-in-straight-table/m-p/932370#M957364</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It should still work. Just replace Plant with a calculated dimension -&amp;gt; &lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;If("Volumes PY" &amp;lt;&amp;gt; 0 and "Price gap" &amp;lt;&amp;gt;0, Plant) &lt;/STRONG&gt;and check '&lt;STRONG&gt;Suppress When Value Is Null&lt;/STRONG&gt;' option&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Nov 2015 15:03:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-filter-records-in-straight-table/m-p/932370#M957364</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-11-04T15:03:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter records in straight table</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-filter-records-in-straight-table/m-p/932371#M957365</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Andrea,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think Sunny's approach is probably going to be your best bet if time is a factor. &lt;/P&gt;&lt;P&gt;If it doesn't work as above you could look at adding a calculated dimension for each, &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Plant, Customer and Material.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Nov 2015 15:20:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-filter-records-in-straight-table/m-p/932371#M957365</guid>
      <dc:creator>Mark_Little</dc:creator>
      <dc:date>2015-11-04T15:20:13Z</dc:date>
    </item>
  </channel>
</rss>

