<?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 the rows in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Filter-the-rows/m-p/692050#M475246</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Another way would be to add a separate list box, with the field as 'Project_Current_Flag' , then the users can choose between showing ongoing projects or ones that have finished.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 31 Jul 2014 14:44:22 GMT</pubDate>
    <dc:creator>c_gilbert</dc:creator>
    <dc:date>2014-07-31T14:44:22Z</dc:date>
    <item>
      <title>Filter the rows</title>
      <link>https://community.qlik.com/t5/QlikView/Filter-the-rows/m-p/692046#M475242</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 am new to QlikView, which I use to create a dashboard for managing budgets for projects. I have a dimension named "Project_Name", containing names of all projects (including historical ones), and another dimension named "Project_Current_Flag", indicating if the project is ongoing (by "Y" and "N").&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I created a straight table to show all details associated with each project, but I only want to display the ones that are ongoing (i.e. has a flag of Y). I tried the conditional display but the entire column just vanished. Can someone please help me out?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tuan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2014 14:34:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filter-the-rows/m-p/692046#M475242</guid>
      <dc:creator />
      <dc:date>2014-07-31T14:34:34Z</dc:date>
    </item>
    <item>
      <title>Re: Filter the rows</title>
      <link>https://community.qlik.com/t5/QlikView/Filter-the-rows/m-p/692047#M475243</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to use Set analysis.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the straight table expression use the following syntax:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sum({$&amp;lt;Project_Current_Flag={'Y'}&amp;gt;}Amount)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;BR /&gt;SKG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2014 14:37:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filter-the-rows/m-p/692047#M475243</guid>
      <dc:creator>simenkg</dc:creator>
      <dc:date>2014-07-31T14:37:00Z</dc:date>
    </item>
    <item>
      <title>Re: Filter the rows</title>
      <link>https://community.qlik.com/t5/QlikView/Filter-the-rows/m-p/692048#M475244</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Conditional display for the expression control the visibility of the field so, if it contain Y and N values the condition is not fullfilled and the field disappear.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To obtain what you want use a multiboc or a list box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it works, it means that data and object&amp;nbsp; are correct so if you want to write the condition in the dimension do:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Project_Current_Flag&lt;/SPAN&gt;='Y', &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Project_Current_Flag&lt;/SPAN&gt;, Null()) and check the box "Suppress null values"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The only thing: is there at least an expression? If not add one&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2014 14:39:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filter-the-rows/m-p/692048#M475244</guid>
      <dc:creator>alexandros17</dc:creator>
      <dc:date>2014-07-31T14:39:28Z</dc:date>
    </item>
    <item>
      <title>Re: Filter the rows</title>
      <link>https://community.qlik.com/t5/QlikView/Filter-the-rows/m-p/692049#M475245</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Depending on the amount of data you have and the number of expressions, there are other solutions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One elegant solution could be to Define a new dimension in your script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(Ongoing, &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Project_Name,null())&lt;/SPAN&gt; as Ongoing_Project_Name&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And use this in your chart with the box Suppress When value is null() in the dimension tab. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2014 14:41:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filter-the-rows/m-p/692049#M475245</guid>
      <dc:creator>simenkg</dc:creator>
      <dc:date>2014-07-31T14:41:41Z</dc:date>
    </item>
    <item>
      <title>Re: Filter the rows</title>
      <link>https://community.qlik.com/t5/QlikView/Filter-the-rows/m-p/692050#M475246</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Another way would be to add a separate list box, with the field as 'Project_Current_Flag' , then the users can choose between showing ongoing projects or ones that have finished.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2014 14:44:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filter-the-rows/m-p/692050#M475246</guid>
      <dc:creator>c_gilbert</dc:creator>
      <dc:date>2014-07-31T14:44:22Z</dc:date>
    </item>
    <item>
      <title>Re: Filter the rows</title>
      <link>https://community.qlik.com/t5/QlikView/Filter-the-rows/m-p/692051#M475247</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG alt="screenshot.PNG.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/63493_screenshot.PNG.png" style="width: 620px; height: 110px;" /&gt;&lt;/P&gt;&lt;P&gt;Hi Simen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for the reply. My apologies for not making my requirements clear. Attached is the screenshot of my straight table. I would like to filter the rows such that only the projects that have a Y flag are displayed&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2014 14:55:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filter-the-rows/m-p/692051#M475247</guid>
      <dc:creator />
      <dc:date>2014-07-31T14:55:29Z</dc:date>
    </item>
    <item>
      <title>Re: Filter the rows</title>
      <link>https://community.qlik.com/t5/QlikView/Filter-the-rows/m-p/692052#M475248</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe try to just edit your dimension, so that it is a calculated dimension.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So instead of &lt;STRONG&gt;Project_Name&lt;/STRONG&gt; as the dimension, instead have:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=if(Project_Current_Flag = 'Y', Project_Name)&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2014 15:00:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filter-the-rows/m-p/692052#M475248</guid>
      <dc:creator>c_gilbert</dc:creator>
      <dc:date>2014-07-31T15:00:30Z</dc:date>
    </item>
    <item>
      <title>Re: Filter the rows</title>
      <link>https://community.qlik.com/t5/QlikView/Filter-the-rows/m-p/692053#M475249</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use the logic as mentioned above.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As Charlotte says, you can give the user the choice using a List box. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to lock the choice so that we always filter the Y Flag, the standard way to do it is by Set Analysis.&lt;/P&gt;&lt;P&gt;You should read up on it as it is a very valuable tool.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the Spent-expression assuming it looks like Sum(Spent) today, the new expression would be Sum({$&amp;lt;Project_Current_Flag={'Y'}&amp;gt;}Spent)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This has to be done for every expression. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I do not recommend using a calculated dimension, as it reduces the performance on big data sets. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2014 15:01:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filter-the-rows/m-p/692053#M475249</guid>
      <dc:creator>simenkg</dc:creator>
      <dc:date>2014-07-31T15:01:41Z</dc:date>
    </item>
  </channel>
</rss>

