<?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: one id linked to multiple status in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/one-id-linked-to-multiple-status/m-p/498443#M186236</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;Did you try this yet&lt;/P&gt;&lt;P&gt;Count({$&amp;lt;Part_Type -={'zsp1'}&amp;gt;} Distinct id)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sokkorn&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 19 Jul 2013 06:17:18 GMT</pubDate>
    <dc:creator>Sokkorn</dc:creator>
    <dc:date>2013-07-19T06:17:18Z</dc:date>
    <item>
      <title>one id linked to multiple status</title>
      <link>https://community.qlik.com/t5/QlikView/one-id-linked-to-multiple-status/m-p/498439#M186232</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 have an ID field which is linked to multiple part type.&lt;/P&gt;&lt;P&gt;For eg : id 10607 is linked to part type like zsp1,zret,zlab etc&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; id 10608 is linked to part type like zret,zlab etc&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; id 10609 is linked to part type like zret&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now i want to take the count of part type where zsp1 is not there.&lt;/P&gt;&lt;P&gt;It is counting 3 for id 10607 &amp;amp; not as 1 for zsp1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have tried this formula&lt;/P&gt;&lt;P&gt;=count(distinct if(part_type&amp;lt;&amp;gt;'zsp1',id))&lt;/P&gt;&lt;P&gt;=count(distinct if(part_type='zret' or part_type='zlab',id))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But i get all the calls where it has zsp1&amp;nbsp; also there after specifying te above condition.&lt;/P&gt;&lt;P&gt; Is it possible to take individulal line count ???? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can someone help me on this issue????&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jul 2013 05:04:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/one-id-linked-to-multiple-status/m-p/498439#M186232</guid>
      <dc:creator />
      <dc:date>2013-07-19T05:04:19Z</dc:date>
    </item>
    <item>
      <title>Re: one id linked to multiple status</title>
      <link>https://community.qlik.com/t5/QlikView/one-id-linked-to-multiple-status/m-p/498440#M186233</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use following set analysis expression.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Count(Distinct {&amp;lt;Part_Type -={"zsp1"}&amp;gt;}id)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jul 2013 05:15:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/one-id-linked-to-multiple-status/m-p/498440#M186233</guid>
      <dc:creator>suniljain</dc:creator>
      <dc:date>2013-07-19T05:15:02Z</dc:date>
    </item>
    <item>
      <title>Re: one id linked to multiple status</title>
      <link>https://community.qlik.com/t5/QlikView/one-id-linked-to-multiple-status/m-p/498441#M186234</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi sunil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for ur response, but this not working ,&lt;/P&gt;&lt;P&gt;as it has to take any id having zsp1 ,zret,zlab,zshm should not consider zsp1 for calculation &amp;amp; should give individual count as zret=1&lt;/P&gt;&lt;P&gt;zlab=1 &lt;/P&gt;&lt;P&gt;zshm=4&lt;/P&gt;&lt;P&gt;&amp;amp; should not come 4 as overall.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jul 2013 05:21:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/one-id-linked-to-multiple-status/m-p/498441#M186234</guid>
      <dc:creator />
      <dc:date>2013-07-19T05:21:03Z</dc:date>
    </item>
    <item>
      <title>Re: one id linked to multiple status</title>
      <link>https://community.qlik.com/t5/QlikView/one-id-linked-to-multiple-status/m-p/498442#M186235</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think your code is write&lt;/P&gt;&lt;P&gt;=count(distinct if(part_type&amp;lt;&amp;gt;'zsp1',id))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if not work then you can try in script--&lt;/P&gt;&lt;P&gt;in script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write code-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;load &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;id,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;part_type&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;from table&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;where part_type&amp;lt;&amp;gt;'zsp1';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;then in chart-&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;count(Distinct id)&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jul 2013 05:34:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/one-id-linked-to-multiple-status/m-p/498442#M186235</guid>
      <dc:creator />
      <dc:date>2013-07-19T05:34:40Z</dc:date>
    </item>
    <item>
      <title>Re: one id linked to multiple status</title>
      <link>https://community.qlik.com/t5/QlikView/one-id-linked-to-multiple-status/m-p/498443#M186236</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;Did you try this yet&lt;/P&gt;&lt;P&gt;Count({$&amp;lt;Part_Type -={'zsp1'}&amp;gt;} Distinct id)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sokkorn&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jul 2013 06:17:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/one-id-linked-to-multiple-status/m-p/498443#M186236</guid>
      <dc:creator>Sokkorn</dc:creator>
      <dc:date>2013-07-19T06:17:18Z</dc:date>
    </item>
    <item>
      <title>Re: one id linked to multiple status</title>
      <link>https://community.qlik.com/t5/QlikView/one-id-linked-to-multiple-status/m-p/498444#M186237</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Thank you for the response,it is not working fine&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i can give an example of the actual problem below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" width="196"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="xl63" height="17" width="98"&gt;part_type&lt;/TD&gt;&lt;TD class="xl63" style="border-left: medium none;" width="98"&gt;id&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl66" height="17" style="border-top: medium none;"&gt;ZRET&lt;/TD&gt;&lt;TD class="xl66" style="border-left: medium none; border-top: medium none;"&gt;108826&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl66" height="17" style="border-top: medium none;"&gt;ZLAB&lt;/TD&gt;&lt;TD class="xl66" style="border-left: medium none; border-top: medium none;"&gt;108826&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl66" height="17" style="border-top: medium none;"&gt;zsp1&lt;/TD&gt;&lt;TD class="xl66" style="border-left: medium none; border-top: medium none;"&gt;108826&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl66" height="17" style="border-top: medium none;"&gt;ZRET&lt;/TD&gt;&lt;TD class="xl66" style="border-left: medium none; border-top: medium none;"&gt;108827&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl66" height="17" style="border-top: medium none;"&gt;ZLAB&lt;/TD&gt;&lt;TD class="xl66" style="border-left: medium none; border-top: medium none;"&gt;108827&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl66" height="17" style="border-top: medium none;"&gt;zsp1&lt;/TD&gt;&lt;TD class="xl66" style="border-left: medium none; border-top: medium none;"&gt;108827&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl66" height="17" style="border-top: medium none;"&gt;zsp1&lt;/TD&gt;&lt;TD class="xl66" style="border-left: medium none; border-top: medium none;"&gt;108828&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl66" height="17" style="border-top: medium none;"&gt;zlab&lt;/TD&gt;&lt;TD class="xl66" style="border-left: medium none; border-top: medium none;"&gt;108828&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl66" height="17" style="border-top: medium none;"&gt;zret&lt;/TD&gt;&lt;TD class="xl66" style="border-left: medium none; border-top: medium none;"&gt;108829&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl66" height="17" style="border-top: medium none;"&gt;zlab&lt;/TD&gt;&lt;TD class="xl66" style="border-left: medium none; border-top: medium none;"&gt;108829&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jul 2013 09:47:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/one-id-linked-to-multiple-status/m-p/498444#M186237</guid>
      <dc:creator />
      <dc:date>2013-07-19T09:47:28Z</dc:date>
    </item>
  </channel>
</rss>

