<?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: Counting values overlapping in two arrays in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Counting-values-overlapping-in-two-arrays/m-p/1537260#M38760</link>
    <description>&lt;P&gt;In Set Analysis. Also I would Only Like to take the Labels and their counts if the count of those labels in 20, 25, 30 is less than their count in 15&lt;/P&gt;&lt;P&gt;Ex:&lt;/P&gt;&lt;P&gt;CVR = 200 for 15 and CVR 126 for 20 Then I dont wanna take CVR count&lt;/P&gt;&lt;P&gt;But if FUV = 200 for 15 and and FUV = 331 for 20 then take FUV&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any quick modifications to above one. I am just new to Qlik Sense hence cannot figure out the syntax. Any suggestions are welcome here.&lt;/P&gt;</description>
    <pubDate>Wed, 30 Jan 2019 14:47:57 GMT</pubDate>
    <dc:creator>kaustubh</dc:creator>
    <dc:date>2019-01-30T14:47:57Z</dc:date>
    <item>
      <title>Counting values overlapping in two arrays</title>
      <link>https://community.qlik.com/t5/App-Development/Counting-values-overlapping-in-two-arrays/m-p/1536754#M38731</link>
      <description>&lt;P&gt;Hi everyone.&lt;/P&gt;&lt;P&gt;I have a data set as follows:&lt;/P&gt;&lt;P&gt;duration&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Code&amp;nbsp;&lt;/P&gt;&lt;P&gt;15&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; OVH&lt;/P&gt;&lt;P&gt;20&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; DEM&lt;/P&gt;&lt;P&gt;25&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; CVR&lt;/P&gt;&lt;P&gt;30&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; FUV&lt;/P&gt;&lt;P&gt;15&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; FUV&lt;/P&gt;&lt;P&gt;15&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ADD&lt;/P&gt;&lt;P&gt;25&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ADD&lt;/P&gt;&lt;P&gt;30&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; CVR&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;I have to count the total number of codes falling in categories 20,25,30 which actually belongs to category of 15. (Simply saying - the codes from 20,25,30 that match the ones in 15 are to be counted). I also have to find the count of each codes falling outside 15. Example:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Total codes same as 15 that are outside&lt;/STRONG&gt; = 100000K&lt;/P&gt;&lt;P&gt;&lt;U&gt;FUD Total outside 15&lt;/U&gt; = 28k&lt;/P&gt;&lt;P&gt;FUD in 20&amp;nbsp; = 14k&lt;/P&gt;&lt;P&gt;FUD in 25&amp;nbsp; = 10k&lt;/P&gt;&lt;P&gt;FUD in 30 = 4k&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;U&gt;CVR Total outside 15&lt;/U&gt; = 5k&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;CVR in 20 = 1.7k&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;CVR in .... and so on for all codes&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Can some one suggest a decent coding technique to find these measures.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Jan 2019 19:24:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Counting-values-overlapping-in-two-arrays/m-p/1536754#M38731</guid>
      <dc:creator>kaustubh</dc:creator>
      <dc:date>2019-01-29T19:24:39Z</dc:date>
    </item>
    <item>
      <title>Re: Counting values overlapping in two arrays</title>
      <link>https://community.qlik.com/t5/App-Development/Counting-values-overlapping-in-two-arrays/m-p/1536870#M38737</link>
      <description>&lt;P&gt;Front end or load? In the front, you could use a set expression like:&lt;/P&gt;&lt;PRE&gt;Sum({&amp;lt;duration -= {15}, Code = P({&amp;lt;duration = {15}&amp;gt;} Code)&amp;gt;} ...&lt;/PRE&gt;&lt;P&gt;That is, consider records where the duration is not 15, for codes that have at least one duration of 15.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Jan 2019 05:42:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Counting-values-overlapping-in-two-arrays/m-p/1536870#M38737</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2019-01-30T05:42:44Z</dc:date>
    </item>
    <item>
      <title>Re: Counting values overlapping in two arrays</title>
      <link>https://community.qlik.com/t5/App-Development/Counting-values-overlapping-in-two-arrays/m-p/1537260#M38760</link>
      <description>&lt;P&gt;In Set Analysis. Also I would Only Like to take the Labels and their counts if the count of those labels in 20, 25, 30 is less than their count in 15&lt;/P&gt;&lt;P&gt;Ex:&lt;/P&gt;&lt;P&gt;CVR = 200 for 15 and CVR 126 for 20 Then I dont wanna take CVR count&lt;/P&gt;&lt;P&gt;But if FUV = 200 for 15 and and FUV = 331 for 20 then take FUV&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any quick modifications to above one. I am just new to Qlik Sense hence cannot figure out the syntax. Any suggestions are welcome here.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Jan 2019 14:47:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Counting-values-overlapping-in-two-arrays/m-p/1537260#M38760</guid>
      <dc:creator>kaustubh</dc:creator>
      <dc:date>2019-01-30T14:47:57Z</dc:date>
    </item>
    <item>
      <title>Re: Counting values overlapping in two arrays</title>
      <link>https://community.qlik.com/t5/App-Development/Counting-values-overlapping-in-two-arrays/m-p/1537308#M38762</link>
      <description>I wish to write it in Set OR Front !</description>
      <pubDate>Wed, 30 Jan 2019 15:44:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Counting-values-overlapping-in-two-arrays/m-p/1537308#M38762</guid>
      <dc:creator>kaustubh</dc:creator>
      <dc:date>2019-01-30T15:44:49Z</dc:date>
    </item>
  </channel>
</rss>

