<?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: Set Analysis Based on Selection in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Set-Analysis-Based-on-Selection/m-p/1338773#M412644</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px;"&gt;=COUNT({$&amp;lt;Author={"Criteria From Selection"}&amp;gt;}[Author])&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 25 May 2017 15:21:39 GMT</pubDate>
    <dc:creator>praveen_prithiviraj</dc:creator>
    <dc:date>2017-05-25T15:21:39Z</dc:date>
    <item>
      <title>Set Analysis Based on Selection</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-Based-on-Selection/m-p/1338767#M412638</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is it possible to have a set analysis expression that is based on a selection in a table?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=COUNT({$&amp;lt;Author={"Criteria From Selection"},}&amp;gt;}[Author])&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 May 2017 14:36:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-Based-on-Selection/m-p/1338767#M412638</guid>
      <dc:creator>evansabres</dc:creator>
      <dc:date>2017-05-25T14:36:35Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis Based on Selection</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-Based-on-Selection/m-p/1338768#M412639</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes you can.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here are examples below from the qlik reference guide&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Synchronizing Selections between States&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;The following expressions can be used in a single chart:&lt;/P&gt;&lt;P&gt;count({$} DISTINCT [Invoice Number])&lt;/P&gt;&lt;P&gt;count({State1} DISTINCT [Invoice Number])&lt;/P&gt;&lt;P&gt;count({State2} DISTINCT [Invoice Number])&lt;/P&gt;&lt;P&gt;There is a problem with this method; the QlikView Developer must duplicate the selections (list boxes and&lt;/P&gt;&lt;P&gt;multi boxes) for all three states so that the end-user can make appropriate selections for the various states. In&lt;/P&gt;&lt;P&gt;many situations the QlikView Developer will want to have a set of ‘common’ selections available to all&lt;/P&gt;&lt;P&gt;states. This will allow the end user to set the context for the various charts and then make use of specific&lt;/P&gt;&lt;P&gt;selections to show the differences between states. Set Analysis can be used with states to keep certain selections&lt;/P&gt;&lt;P&gt;consistent between states.&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;count({State1&amp;lt;Year = $::Year, Month = $::Month&amp;gt;} DISTINCT [Invoice Number])&lt;/P&gt;&lt;P&gt;count({State2&amp;lt;Year = $::Year, Month = $::Month&amp;gt;} DISTINCT [Invoice Number])&lt;/P&gt;&lt;P&gt;The QliKView Developer will keep the Year and Month selections in State1 and State2 synchronized&lt;/P&gt;&lt;P&gt;with the Year and Month selections in the default state. The QlikView Developer can add&lt;/P&gt;&lt;P&gt;elements to the set modifiers as necessary in order to keep even more fields consistent between states.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards&lt;/P&gt;&lt;P&gt;Sibusiso Phumelo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 May 2017 14:43:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-Based-on-Selection/m-p/1338768#M412639</guid>
      <dc:creator>sibusiso90</dc:creator>
      <dc:date>2017-05-25T14:43:26Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis Based on Selection</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-Based-on-Selection/m-p/1338769#M412640</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Evan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;=COUNT({$&amp;lt;Author={$(=GetFieldSelections([Yours_Field]))}&amp;gt;}[Author])&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Yours_Field - change that name on yours&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Regards&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Jacek.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 May 2017 14:45:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-Based-on-Selection/m-p/1338769#M412640</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-05-25T14:45:27Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis Based on Selection</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-Based-on-Selection/m-p/1338770#M412641</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Unfortunately, I could not get this to generate any results, however may be due to how my data is established.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 May 2017 15:02:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-Based-on-Selection/m-p/1338770#M412641</guid>
      <dc:creator>evansabres</dc:creator>
      <dc:date>2017-05-25T15:02:02Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis Based on Selection</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-Based-on-Selection/m-p/1338771#M412642</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could you send a sample of your data?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 May 2017 15:05:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-Based-on-Selection/m-p/1338771#M412642</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-05-25T15:05:54Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis Based on Selection</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-Based-on-Selection/m-p/1338772#M412643</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think my data structure is flawed, will revisit that before I move on&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 May 2017 15:07:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-Based-on-Selection/m-p/1338772#M412643</guid>
      <dc:creator>evansabres</dc:creator>
      <dc:date>2017-05-25T15:07:35Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis Based on Selection</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-Based-on-Selection/m-p/1338773#M412644</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px;"&gt;=COUNT({$&amp;lt;Author={"Criteria From Selection"}&amp;gt;}[Author])&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 May 2017 15:21:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-Based-on-Selection/m-p/1338773#M412644</guid>
      <dc:creator>praveen_prithiviraj</dc:creator>
      <dc:date>2017-05-25T15:21:39Z</dc:date>
    </item>
  </channel>
</rss>

