<?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: Convert to set analysis in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Convert-to-set-analysis/m-p/1249368#M395663</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;As you know set analysis evaluate set on chart level not on row level, there fore even if we convert it into set analysis still it not going work properly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So i think jonathan suggestion is perfect solution for you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prashant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 08 Mar 2017 08:43:43 GMT</pubDate>
    <dc:creator>PrashantSangle</dc:creator>
    <dc:date>2017-03-08T08:43:43Z</dc:date>
    <item>
      <title>Convert to set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-to-set-analysis/m-p/1249363#M395658</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 want to convert the following expression in to set analysis&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sum(If( Aggr(nodistinct Min(Datetime), BusinessID) = Datetime, OpeningBalance)) &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2017 08:08:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-to-set-analysis/m-p/1249363#M395658</guid>
      <dc:creator>gauravgg</dc:creator>
      <dc:date>2017-03-08T08:08:44Z</dc:date>
    </item>
    <item>
      <title>Re: Convert to set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-to-set-analysis/m-p/1249364#M395659</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This may not be suitable for set analysis - you will still need to loop over all the BusinessID values to determine the minimum date so the performance may not be a lot better than the Aggr(). This better done with a flag value derived in the load script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Map_MinDates:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Mapping LOAD BusinessID,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Min(DateTime) as MinDateTime&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Resident Data&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Group By BusinessID;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Join(Data)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD BusinessID,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Datetime, &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(Datetime = ApplyMap('&lt;SPAN style="font-size: 13.3333330154419px;"&gt;Map_MinDates', &lt;SPAN style="font-size: 13.3333330154419px;"&gt;BusinessID), 1, 0) as MinDateFlag&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;&lt;EM&gt;Resident Data;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then the expression becomes:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Sum({&amp;lt;&lt;/EM&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;&lt;EM&gt;MinDateFlag = {1}&amp;gt; &lt;/EM&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;EM&gt;OpeningBalance)&lt;/EM&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Change the tablename above (Data) to the correct name for your model.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2017 08:22:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-to-set-analysis/m-p/1249364#M395659</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2017-03-08T08:22:38Z</dc:date>
    </item>
    <item>
      <title>Re: Convert to set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-to-set-analysis/m-p/1249365#M395660</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;Thanks for the reply&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But is it possible using set analysis only, can you help me ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2017 08:35:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-to-set-analysis/m-p/1249365#M395660</guid>
      <dc:creator>gauravgg</dc:creator>
      <dc:date>2017-03-08T08:35:15Z</dc:date>
    </item>
    <item>
      <title>Re: Convert to set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-to-set-analysis/m-p/1249366#M395661</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: 13px;"&gt;Try this,&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;I don't think whether &lt;STRONG&gt;nodistinct&lt;/STRONG&gt; require for you&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;&lt;STRONG&gt;Aggr(Sum({&amp;lt;Datetime = {'$(=Min(Datetime))'}&amp;gt;}OpeningBalance),BusinessID)&lt;/STRONG&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;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&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;We can help you if you provide data / application&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2017 08:40:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-to-set-analysis/m-p/1249366#M395661</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-03-08T08:40:38Z</dc:date>
    </item>
    <item>
      <title>Re: Convert to set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-to-set-analysis/m-p/1249367#M395662</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't think it can be done practically using set analysis, but I would be interested to see if anyone can prove me wrong. And even if it is possible, it will be complex and unlikely to perform materially better than a sum(if())&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2017 08:43:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-to-set-analysis/m-p/1249367#M395662</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2017-03-08T08:43:12Z</dc:date>
    </item>
    <item>
      <title>Re: Convert to set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-to-set-analysis/m-p/1249368#M395663</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;As you know set analysis evaluate set on chart level not on row level, there fore even if we convert it into set analysis still it not going work properly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So i think jonathan suggestion is perfect solution for you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prashant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2017 08:43:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-to-set-analysis/m-p/1249368#M395663</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2017-03-08T08:43:43Z</dc:date>
    </item>
    <item>
      <title>Re: Convert to set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-to-set-analysis/m-p/1249369#M395664</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Anil&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Min(Datetime) in that set expression is the&lt;EM&gt; minimum for all BusinessID'&lt;/EM&gt;s. I think the requirement is for the Min(Datetime) be the earliest Datetime for each BusinessID.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2017 08:45:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-to-set-analysis/m-p/1249369#M395664</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2017-03-08T08:45:32Z</dc:date>
    </item>
    <item>
      <title>Re: Convert to set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-to-set-analysis/m-p/1249370#M395665</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Let him explain more. I got his intention. That'f for i liked it your first reply. Anyhow, we can try different way if he prove himself or else we can suggest him as your first response&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2017 08:47:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-to-set-analysis/m-p/1249370#M395665</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-03-08T08:47:55Z</dc:date>
    </item>
    <item>
      <title>Re: Convert to set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-to-set-analysis/m-p/1249371#M395666</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;Jonathan , your reply was helpful &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But i have a qliksense qvf in which i have a Binary load data model , i cannot make changes in data load editor .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So , i am trying to do it on the presentation layer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2017 09:04:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-to-set-analysis/m-p/1249371#M395666</guid>
      <dc:creator>gauravgg</dc:creator>
      <dc:date>2017-03-08T09:04:56Z</dc:date>
    </item>
    <item>
      <title>Re: Convert to set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-to-set-analysis/m-p/1249372#M395667</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 tried this , but it is not giving me the value&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2017 10:34:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-to-set-analysis/m-p/1249372#M395667</guid>
      <dc:creator>gauravgg</dc:creator>
      <dc:date>2017-03-08T10:34:35Z</dc:date>
    </item>
    <item>
      <title>Re: Convert to set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-to-set-analysis/m-p/1249373#M395668</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It won't work for you. Try with &lt;STRONG style="font-size: 11.7px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;A href="https://community.qlik.com/people/jontydkpi"&gt;jontydkpi&lt;/A&gt;&lt;/STRONG&gt; or else&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-users/171708"&gt;stalwar1&lt;/A&gt;‌ &lt;A href="https://community.qlik.com/qlik-users/120618"&gt;mrkachhiaimp&lt;/A&gt;‌ &lt;A href="https://community.qlik.com/qlik-users/61824"&gt;marcowedel&lt;/A&gt;‌&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2017 10:40:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-to-set-analysis/m-p/1249373#M395668</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-03-08T10:40:20Z</dc:date>
    </item>
    <item>
      <title>Re: Convert to set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-to-set-analysis/m-p/1249374#M395669</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be 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;&lt;STRONG&gt;Sum({&amp;lt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;BusinessID&lt;/SPAN&gt; = {"=&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Min(TOTAL Datetime) = &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Datetime&lt;/SPAN&gt;&lt;/SPAN&gt;"}&amp;gt;} OpeningBalance)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2017 10:47:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-to-set-analysis/m-p/1249374#M395669</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-03-08T10:47:25Z</dc:date>
    </item>
    <item>
      <title>Re: Convert to set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-to-set-analysis/m-p/1249375#M395670</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI &lt;/P&gt;&lt;P&gt;sunny ,it is not working&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2017 10:51:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-to-set-analysis/m-p/1249375#M395670</guid>
      <dc:creator>gauravgg</dc:creator>
      <dc:date>2017-03-08T10:51:44Z</dc:date>
    </item>
    <item>
      <title>Re: Convert to set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-to-set-analysis/m-p/1249376#M395671</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Would you be able to provide a sample?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2017 10:59:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-to-set-analysis/m-p/1249376#M395671</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-03-08T10:59:47Z</dc:date>
    </item>
    <item>
      <title>Re: Convert to set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-to-set-analysis/m-p/1249377#M395672</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Don't know how to convert this in set analysis but you can use below as well..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=FirstSortedValue(DISTINCT Aggr(SUM(OpeningBalance),&lt;SPAN style="font-style: inherit;"&gt;BusinessID&lt;/SPAN&gt;,&lt;SPAN style="font-style: inherit;"&gt;Datetime&lt;/SPAN&gt;),&lt;SPAN style="font-style: inherit;"&gt;Datetime&lt;/SPAN&gt;)&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;instead of this&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Sum(If( Aggr(nodistinct Min(Datetime), BusinessID) = Datetime, OpeningBalance))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2017 11:51:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-to-set-analysis/m-p/1249377#M395672</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2017-03-08T11:51:40Z</dc:date>
    </item>
    <item>
      <title>Re: Convert to set analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-to-set-analysis/m-p/1249378#M395673</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;please post some sample data to test with as well as &lt;SPAN style="font-size: 13.3333px;"&gt;your expected result.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Mar 2017 23:00:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-to-set-analysis/m-p/1249378#M395673</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2017-03-09T23:00:17Z</dc:date>
    </item>
  </channel>
</rss>

