<?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 create an identical table with restricted selected lines? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-create-an-identical-table-with-restricted-selected-lines/m-p/961204#M329879</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply.&lt;/P&gt;&lt;P&gt;I know this would work but i would prefer to do this outside of the script cause the amount of lines is huge...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 09 Nov 2015 10:15:57 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-11-09T10:15:57Z</dc:date>
    <item>
      <title>How to create an identical table with restricted selected lines?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-an-identical-table-with-restricted-selected-lines/m-p/961200#M329875</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have a table like this, where the Planned quantity and the Delivered quantity are expressions:&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" height="99" style="border: 1px solid rgb(0, 0, 0); width: 305px; height: 101px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;Order&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Planned&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Delivered&lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;1&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;50&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;50&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;2&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;100&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;20&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;3&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;150&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to do another table, identical to this one, but only select the lines where the Delivered quantity = 0&lt;/P&gt;&lt;P&gt;For example, my new table would contain only the last line of this example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" height="49" style="border: 1px solid rgb(0, 0, 0); width: 303px; height: 45px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;Order&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Planned&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Delivered&lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;3&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;150&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can i do this please?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Loïc&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Nov 2015 10:06:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-an-identical-table-with-restricted-selected-lines/m-p/961200#M329875</guid>
      <dc:creator />
      <dc:date>2015-11-09T10:06:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to create an identical table with restricted selected lines?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-an-identical-table-with-restricted-selected-lines/m-p/961201#M329876</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Add this to your LOAD script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NOCONCATENATE LOAD&lt;/P&gt;&lt;P&gt;LOAD Order,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Planned,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Delivered&lt;/P&gt;&lt;P&gt;RESIDENT YourTable&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;WHERE Delivered = 0;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP TABLE YourTable;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Nov 2015 10:14:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-an-identical-table-with-restricted-selected-lines/m-p/961201#M329876</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2015-11-09T10:14:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to create an identical table with restricted selected lines?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-an-identical-table-with-restricted-selected-lines/m-p/961202#M329877</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can take a resident of same Table like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;Resident TableName where Order='3';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use noconcatenate as it will automatically concat it and rename the fields name as well...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use Qualify/Unqualify as well for renaming&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Nov 2015 10:14:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-an-identical-table-with-restricted-selected-lines/m-p/961202#M329877</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-09T10:14:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to create an identical table with restricted selected lines?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-an-identical-table-with-restricted-selected-lines/m-p/961203#M329878</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What are you &lt;EM&gt;Planned&lt;/EM&gt; and &lt;EM&gt;Delivered&lt;/EM&gt; expressions ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Nov 2015 10:15:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-an-identical-table-with-restricted-selected-lines/m-p/961203#M329878</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-09T10:15:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to create an identical table with restricted selected lines?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-an-identical-table-with-restricted-selected-lines/m-p/961204#M329879</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply.&lt;/P&gt;&lt;P&gt;I know this would work but i would prefer to do this outside of the script cause the amount of lines is huge...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Nov 2015 10:15:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-an-identical-table-with-restricted-selected-lines/m-p/961204#M329879</guid>
      <dc:creator />
      <dc:date>2015-11-09T10:15:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to create an identical table with restricted selected lines?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-an-identical-table-with-restricted-selected-lines/m-p/961205#M329880</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Outside the script means?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you want to use in QV, then it should be in QV...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Nov 2015 10:17:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-an-identical-table-with-restricted-selected-lines/m-p/961205#M329880</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-09T10:17:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to create an identical table with restricted selected lines?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-an-identical-table-with-restricted-selected-lines/m-p/961206#M329881</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If&amp;nbsp; order is your dimension then you try these two expression:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Planned:&lt;/P&gt;&lt;P&gt;=If( &lt;EM&gt;YourOriginalDeliveredExpressionComesHere = 0, YourOriginalPlannedExpressionComesHere, 0)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Delivered:&lt;/P&gt;&lt;P&gt;=0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and enable 'suppress zero values' on presentation tab&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Nov 2015 10:23:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-an-identical-table-with-restricted-selected-lines/m-p/961206#M329881</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2015-11-09T10:23:52Z</dc:date>
    </item>
  </channel>
</rss>

