<?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: select exclude problem in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/select-exclude-problem/m-p/516347#M1144862</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kaushik,&lt;/P&gt;&lt;P&gt;sorry but it's a bit difficult for me to create an example file, as some of the data is in Hebrew. but, I'll try to demonstrate my point.&lt;/P&gt;&lt;P&gt;in table A you can see the payment in numerous cards&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jiveImage" src="https://community.qlik.com/legacyfs/online/45819_pastedImage_1.png" style="width: auto; height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;table B shows the wrong result, as in column "new payment" should be amount of&amp;nbsp; 4,850&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jiveImage" src="https://community.qlik.com/legacyfs/online/45818_pastedImage_0.png" style="width: auto; height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for your help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 22 Aug 2013 09:46:14 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2013-08-22T09:46:14Z</dc:date>
    <item>
      <title>select exclude problem</title>
      <link>https://community.qlik.com/t5/QlikView/select-exclude-problem/m-p/516340#M1144855</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;I'm trying to allow selection in one of my tables. I'm excluding some data, and that process goes well.&lt;/P&gt;&lt;P&gt;the problem is that information from different cells (which brought with set analysis) is missing.&lt;/P&gt;&lt;P&gt;as far as I've noticed, it doesn't happen on a regular filtering (just when i switch the filter to excluded).&lt;/P&gt;&lt;P&gt;that's my selection which i exclude later =if(vComission=1,'708*',''), how can i drop the cards that begins with 708 without using exclusion? or should i change the script to the table? that's the type of the script:&lt;/P&gt;&lt;P&gt;if(Date&amp;gt;=Today(),Sum ({$&amp;lt;TranType={'payment'}&amp;gt;}TranAmtCurr)&lt;/P&gt;&lt;P&gt;the table shows bank currency transactions&lt;/P&gt;&lt;P&gt;before&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jiveImage" src="https://community.qlik.com/legacyfs/online/45796_pastedImage_8.png" style="width: auto; height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;after&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jiveImage" src="https://community.qlik.com/legacyfs/online/45797_pastedImage_9.png" style="width: auto; height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;thanks for any help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Aug 2013 05:44:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/select-exclude-problem/m-p/516340#M1144855</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-08-22T05:44:24Z</dc:date>
    </item>
    <item>
      <title>Re: select exclude problem</title>
      <link>https://community.qlik.com/t5/QlikView/select-exclude-problem/m-p/516341#M1144856</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try this :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(Date&amp;gt;=Today(),Sum ({$&amp;lt;TranType={'payment'}, Card - = {"708*"}&amp;gt;}TranAmtCurr)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Assuming 'Card' is a field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Aug 2013 05:52:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/select-exclude-problem/m-p/516341#M1144856</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2013-08-22T05:52:01Z</dc:date>
    </item>
    <item>
      <title>Re: select exclude problem</title>
      <link>https://community.qlik.com/t5/QlikView/select-exclude-problem/m-p/516342#M1144857</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 can try like this using expression&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=Sum ({$&amp;lt;Date={'&amp;gt;=$(=Today())'}TranType={'payment'}, Card - = {"708*"}&amp;gt;} TranAmtCurr)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or you can arrive a new field in script like this for card&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;If(Left(Card, 3) = '708', 1, 0) AS Is708&lt;/P&gt;&lt;P&gt;FROM DataSource;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then in expression you do like this&lt;/P&gt;&lt;P&gt;=Sum ({$&amp;lt;Date={'&amp;gt;=$(=Today())'}TranType={'payment'},Is708={1} &amp;gt;} TranAmtCurr)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Aug 2013 06:18:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/select-exclude-problem/m-p/516342#M1144857</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2013-08-22T06:18:41Z</dc:date>
    </item>
    <item>
      <title>Re: select exclude problem</title>
      <link>https://community.qlik.com/t5/QlikView/select-exclude-problem/m-p/516343#M1144858</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for the quick replies,&lt;/P&gt;&lt;P&gt;"card" is indeed a field, i added a new field (as you noted) in the script but the expression you've suggested didn't work.&lt;/P&gt;&lt;P&gt;i use that expression: if(Date&amp;gt;=Today() and Is708='1',Sum ({$&amp;lt;TranType={'payment'}&amp;gt;}TranAmtCurr))&lt;/P&gt;&lt;P&gt;it works only where the only card begins with 708, if there are few cards, i don't get resoults&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Aug 2013 08:28:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/select-exclude-problem/m-p/516343#M1144858</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-08-22T08:28:57Z</dc:date>
    </item>
    <item>
      <title>Re: select exclude problem</title>
      <link>https://community.qlik.com/t5/QlikView/select-exclude-problem/m-p/516344#M1144859</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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If you want to exclude the Card starting with 708 then in the solution said by Jagan, use the 0 instead of 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; So your expression will be.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(Date&amp;gt;=Today() and Is708='0',Sum ({$&amp;lt;TranType={'payment'}&amp;gt;}TranAmtCurr))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; This will how the data (Sum of TranAmtCurr) only where the Card doesnt start woth 708.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kaushik Solanki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Aug 2013 08:34:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/select-exclude-problem/m-p/516344#M1144859</guid>
      <dc:creator>kaushiknsolanki</dc:creator>
      <dc:date>2013-08-22T08:34:58Z</dc:date>
    </item>
    <item>
      <title>Re: select exclude problem</title>
      <link>https://community.qlik.com/t5/QlikView/select-exclude-problem/m-p/516345#M1144860</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 tried that, but in sections where there are few types of card, the exclude doesn't work .&lt;/P&gt;&lt;P&gt;it works only where the only card begins with 708, if there are few cards, i don't get resoults&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Aug 2013 08:48:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/select-exclude-problem/m-p/516345#M1144860</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-08-22T08:48:24Z</dc:date>
    </item>
    <item>
      <title>Re: select exclude problem</title>
      <link>https://community.qlik.com/t5/QlikView/select-exclude-problem/m-p/516346#M1144861</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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Is it possible for you to put the example file and explain it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kaushik Solanki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Aug 2013 08:54:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/select-exclude-problem/m-p/516346#M1144861</guid>
      <dc:creator>kaushiknsolanki</dc:creator>
      <dc:date>2013-08-22T08:54:44Z</dc:date>
    </item>
    <item>
      <title>Re: select exclude problem</title>
      <link>https://community.qlik.com/t5/QlikView/select-exclude-problem/m-p/516347#M1144862</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kaushik,&lt;/P&gt;&lt;P&gt;sorry but it's a bit difficult for me to create an example file, as some of the data is in Hebrew. but, I'll try to demonstrate my point.&lt;/P&gt;&lt;P&gt;in table A you can see the payment in numerous cards&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jiveImage" src="https://community.qlik.com/legacyfs/online/45819_pastedImage_1.png" style="width: auto; height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;table B shows the wrong result, as in column "new payment" should be amount of&amp;nbsp; 4,850&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jiveImage" src="https://community.qlik.com/legacyfs/online/45818_pastedImage_0.png" style="width: auto; height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for your help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Aug 2013 09:46:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/select-exclude-problem/m-p/516347#M1144862</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-08-22T09:46:14Z</dc:date>
    </item>
    <item>
      <title>Re: select exclude problem</title>
      <link>https://community.qlik.com/t5/QlikView/select-exclude-problem/m-p/516348#M1144863</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;After some adjustments the correct script is:&lt;/P&gt;&lt;P&gt;if(Date&amp;gt;=Today() ,Sum ({$&amp;lt;TranType={'payment'},Is708={'0'}&amp;gt;}TranAmtCurr))&lt;/P&gt;&lt;P&gt;I put the exclusion field as part of the set analysis&lt;/P&gt;&lt;P&gt;of course after creating a field in the script, as Jagan has suggested&lt;/P&gt;&lt;P&gt;thanks again&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 25 Aug 2013 09:27:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/select-exclude-problem/m-p/516348#M1144863</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-08-25T09:27:08Z</dc:date>
    </item>
  </channel>
</rss>

