<?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: the issue about excluded values in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/the-issue-about-excluded-values/m-p/918124#M318287</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It works. Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 28 Jul 2015 15:04:51 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2015-07-28T15:04:51Z</dc:date>
    <item>
      <title>the issue about excluded values</title>
      <link>https://community.qlik.com/t5/QlikView/the-issue-about-excluded-values/m-p/918119#M318282</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 need to set the following condition:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if value 'A' in field 'B' is possible to select, then Test=1, else Test=0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible to set such an expression in QlikView?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you in advance,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Larisa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jul 2015 14:11:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/the-issue-about-excluded-values/m-p/918119#M318282</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-07-28T14:11:31Z</dc:date>
    </item>
    <item>
      <title>Re: the issue about excluded values</title>
      <link>https://community.qlik.com/t5/QlikView/the-issue-about-excluded-values/m-p/918120#M318283</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In script&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;If(B='A',1,0) as Test&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jul 2015 14:17:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/the-issue-about-excluded-values/m-p/918120#M318283</guid>
      <dc:creator>antoniotiman</dc:creator>
      <dc:date>2015-07-28T14:17:03Z</dc:date>
    </item>
    <item>
      <title>Re: the issue about excluded values</title>
      <link>https://community.qlik.com/t5/QlikView/the-issue-about-excluded-values/m-p/918121#M318284</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe I explained not clear enogh.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I mean if &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;value 'A' in field 'B' is possible to select &lt;STRONG&gt;taking into account other selections at a particular moment, &lt;/STRONG&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;then Test=1, else Test=0.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I see that loading another field won't help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jul 2015 14:39:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/the-issue-about-excluded-values/m-p/918121#M318284</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-07-28T14:39:58Z</dc:date>
    </item>
    <item>
      <title>Re: the issue about excluded values</title>
      <link>https://community.qlik.com/t5/QlikView/the-issue-about-excluded-values/m-p/918122#M318285</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Providing you don't have too much data you can "Concat" the field B and look for "A" in that string. You need to add a "divider" character.&lt;/P&gt;&lt;P&gt;Formula for Test variable:&lt;/P&gt;&lt;P&gt;=If (Index ('|' &amp;amp; Concat (DISTINCT B, '|') &amp;amp; '|', '|A|'), 1, 0)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jul 2015 14:51:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/the-issue-about-excluded-values/m-p/918122#M318285</guid>
      <dc:creator>johanlindell</dc:creator>
      <dc:date>2015-07-28T14:51:02Z</dc:date>
    </item>
    <item>
      <title>Re: the issue about excluded values</title>
      <link>https://community.qlik.com/t5/QlikView/the-issue-about-excluded-values/m-p/918123#M318286</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe Expression&lt;/P&gt;&lt;P&gt;If(B='A',Sum({&amp;lt;Test={1}&amp;gt;} Value),Sum({&amp;lt;Test={0}&amp;gt;} Value)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jul 2015 14:51:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/the-issue-about-excluded-values/m-p/918123#M318286</guid>
      <dc:creator>antoniotiman</dc:creator>
      <dc:date>2015-07-28T14:51:09Z</dc:date>
    </item>
    <item>
      <title>Re: the issue about excluded values</title>
      <link>https://community.qlik.com/t5/QlikView/the-issue-about-excluded-values/m-p/918124#M318287</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It works. Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jul 2015 15:04:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/the-issue-about-excluded-values/m-p/918124#M318287</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-07-28T15:04:51Z</dc:date>
    </item>
  </channel>
</rss>

