<?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 Set Analysis question in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Set-Analysis-question/m-p/272388#M583623</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could evaluate the 4 fields in the load script and assign a 0-4 in a new count field.&amp;nbsp; Could then sum up this new field in the chart - and also do the grouping.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 19 Sep 2011 16:13:43 GMT</pubDate>
    <dc:creator>nathanfurby</dc:creator>
    <dc:date>2011-09-19T16:13:43Z</dc:date>
    <item>
      <title>Set Analysis question</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-question/m-p/272387#M583622</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Bit of background...&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a set of data that included 4 fields that indicate if data has been modified in the table.&amp;nbsp; I want to be able to chart five different buckets: No mods made, 1 mod made, 2 mods made, 3 mods made, and 4 mods made.&amp;nbsp; I don't necessarily care to indicate WHICH field was modified, just the number of the fields that were modified.&amp;nbsp; Is there a way to accomplish this?&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Sep 2011 15:56:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-question/m-p/272387#M583622</guid>
      <dc:creator />
      <dc:date>2011-09-19T15:56:27Z</dc:date>
    </item>
    <item>
      <title>Set Analysis question</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-question/m-p/272388#M583623</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could evaluate the 4 fields in the load script and assign a 0-4 in a new count field.&amp;nbsp; Could then sum up this new field in the chart - and also do the grouping.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Sep 2011 16:13:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-question/m-p/272388#M583623</guid>
      <dc:creator>nathanfurby</dc:creator>
      <dc:date>2011-09-19T16:13:43Z</dc:date>
    </item>
    <item>
      <title>Set Analysis question</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-question/m-p/272389#M583624</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What are the possible values of the modified? field? Yes/No, 1/0, Modified/Null()??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Sep 2011 17:19:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-question/m-p/272389#M583624</guid>
      <dc:creator>Jason_Michaelides</dc:creator>
      <dc:date>2011-09-19T17:19:45Z</dc:date>
    </item>
    <item>
      <title>Set Analysis question</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-question/m-p/272390#M583625</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Assuming that your 4 fields are 1/0 flags, when 1 signifies a change, I'd recommend creating a calculated dimension as a summary of all 4 fields:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RANGESUM(Fld1, Fld2, Fld3, Fld4, Fld5)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the expression, simply count the unique keys that identify your data:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;count(distinct UniqueID)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This should do what you described...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Oleg &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Sep 2011 18:33:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-question/m-p/272390#M583625</guid>
      <dc:creator>Oleg_Troyansky</dc:creator>
      <dc:date>2011-09-19T18:33:45Z</dc:date>
    </item>
    <item>
      <title>Set Analysis question</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-question/m-p/272391#M583626</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This did the trick, well mostly.&amp;nbsp; My fields weren't 1/0 flags, so instead of RANGESUM(Fld1, fld2, fld3, fld4) I used RANGESUM(if(fld1='None', 0, 1), ...)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Sep 2011 20:10:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-question/m-p/272391#M583626</guid>
      <dc:creator />
      <dc:date>2011-09-21T20:10:15Z</dc:date>
    </item>
  </channel>
</rss>

