<?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 Where exists and group by in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Where-exists-and-group-by/m-p/1379149#M814049</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Am I writing the below script correctly?&lt;/P&gt;&lt;P&gt;I am following on from a previous script that was a Fiscal Year Month which has a 'where exists group by' clause which also works. Mine however for the Fiscal Year Week does not work&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;// Structure load - Monthly&lt;BR /&gt;temp_Weekly_Validations:&lt;BR /&gt;Load &lt;BR /&gt;&amp;nbsp; [Country Code]&lt;BR /&gt;Resident Country;&lt;/P&gt;&lt;P&gt;Outer Join(temp_Weekly_Validations)&lt;BR /&gt;Load &lt;BR /&gt;&amp;nbsp; [Fiscal Year Week], &lt;BR /&gt;&amp;nbsp; null() as Date&lt;BR /&gt;&amp;nbsp; &lt;BR /&gt;Resident [Weekly Calendar];&lt;/P&gt;&lt;P&gt;Outer Join(temp_Weekly_Validations)&lt;BR /&gt;Load&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp; Weekly_Control, &lt;BR /&gt;&amp;nbsp; 0 as [Record Count], &lt;BR /&gt;&amp;nbsp; 0 as [Value Sum]&lt;BR /&gt;&amp;nbsp; &lt;BR /&gt;Resident Weekly_Controls&lt;BR /&gt;where Weekly_Control &amp;lt;&amp;gt; 'Avaya';&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Weekly_Validations:&lt;BR /&gt;NoConcatenate &lt;BR /&gt;Load&amp;nbsp; &lt;BR /&gt;&amp;nbsp; *,&amp;nbsp; &lt;BR /&gt;&amp;nbsp; Weekly_Control &amp;amp; '-' &amp;amp; [Country Code] &amp;amp; '-' &amp;amp; [Fiscal Year Week] as %ValidationKey&lt;BR /&gt;&amp;nbsp; &lt;BR /&gt;Resident temp_Weekly_Validations;&lt;/P&gt;&lt;P&gt;drop table temp_Weekly_Validations;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;// Structure load - Daily&lt;BR /&gt;temp_Weekly_Validations:&lt;BR /&gt;Load &lt;BR /&gt;&amp;nbsp; [Country Code] as [Country Code2]&lt;BR /&gt;&amp;nbsp; &lt;BR /&gt;Resident Country;&lt;/P&gt;&lt;P&gt;Outer Join(temp_Weekly_Validations)&lt;BR /&gt;Load &lt;BR /&gt;&amp;nbsp; null() as [Fiscal Week2], &lt;BR /&gt;&amp;nbsp; Date as Date2&lt;BR /&gt;&amp;nbsp; &lt;BR /&gt;Resident [Daily Calendar];&lt;/P&gt;&lt;P&gt;Outer Join(temp_Weekly_Validations)&lt;BR /&gt;Load &lt;BR /&gt;&amp;nbsp; Weekly_Control as Weekly_Control2, &lt;BR /&gt;&amp;nbsp; 0 as [Record Count2], &lt;BR /&gt;&amp;nbsp; 0 as [Value Sum2]&lt;BR /&gt;&amp;nbsp; &lt;BR /&gt;Resident Weekly_Controls&lt;BR /&gt;where Weekly_Control = 'Avaya';&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Weekly_Validations:&lt;BR /&gt;Load [Country Code2] as [Country Code],&lt;BR /&gt;&amp;nbsp; [Fiscal Week2] as [Fiscal Year Week],&lt;BR /&gt;&amp;nbsp; Date2 as Date,&lt;BR /&gt;&amp;nbsp; Weekly_Control2 as Weekly_Control,&lt;BR /&gt;&amp;nbsp; [Record Count2] as [Record Count],&lt;BR /&gt;&amp;nbsp; [Value Sum2] as [Value Sum],&lt;BR /&gt;&amp;nbsp; Weekly_Control2 &amp;amp; '-' &amp;amp; [Country Code2] &amp;amp; '-' &amp;amp; Date2 as %ValidationKey&lt;BR /&gt;Resident temp_Weekly_Validations;&lt;/P&gt;&lt;P&gt;drop table temp_Weekly_Validations;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Concatenate(Weekly_Validations)&lt;BR /&gt;LOAD &lt;BR /&gt; right(left(PurgeChar(%ClaimMeasuresKey,'-'),7),2) as [Country Code],&lt;BR /&gt; %ClaimMeasuresKey,&lt;BR /&gt; text(ApplyMap('MapDateToFiscalWeek', PurgeChar(Weekname(Date(left(PurgeChar(%ClaimMeasuresKey,'-'),5), 'YYYYMM')), '/'))) as [Fiscal Year Week],&lt;BR /&gt; null() as Date,&lt;BR /&gt; 'Claims Registered' as Weekly_Control,&lt;BR /&gt; count(reg_count) as [Record Count],&lt;BR /&gt; 0 as [Value Sum]&lt;BR /&gt;FROM &lt;BR /&gt;[$(vQVDs)\A_Claim_Measures.qvd]&lt;BR /&gt;(qvd)&lt;BR /&gt;&lt;STRONG&gt;where exists([Fiscal Year Week], text(ApplyMap('MapDateToFiscalWeek', PurgeChar(Weekname(Date(left(PurgeChar(%ClaimMeasuresKey,'-'),5), 'YYYYMM')), '/'))))&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;group by text(ApplyMap('MapDateToFiscalWeek', PurgeChar(Weekname(Date(left(PurgeChar(%ClaimMeasuresKey,'-'),5), 'YYYYMM')), '/'))), Subfield(%ClaimMeasuresKey, '-', 1);&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;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;My Fiscal Year Week appears as&lt;/P&gt;&lt;P&gt;201737&lt;/P&gt;&lt;P&gt;201736&lt;/P&gt;&lt;P&gt;201735 etc&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let vWeeklyStart = num(WeekStart(Today(), -13)); // 13 months back&lt;BR /&gt;Let vWeeklyEnd = num(WeekStart(Today(), -1)); // Last Month&lt;/P&gt;&lt;P&gt;[Weekly Calendar]:&lt;BR /&gt;LOAD distinct &lt;BR /&gt;&amp;nbsp; Fiscal_Year_Week as [Fiscal Year Week],&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Fiscal_Year &amp;amp; Fiscal_Week as [Fiscal Week]&lt;BR /&gt;FROM&lt;BR /&gt;[$(vQVDs)\T_Calendar_Test.qvd]&lt;BR /&gt;(qvd)&lt;BR /&gt;where num(Date) &amp;gt;= $(vWeeklyStart)&lt;BR /&gt;and num(Date) &amp;lt;= $(vWeeklyEnd);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
    <dc:creator>bobbydave</dc:creator>
    <dc:date>2020-11-25T16:16:04Z</dc:date>
    <item>
      <title>Where exists and group by</title>
      <link>https://community.qlik.com/t5/QlikView/Where-exists-and-group-by/m-p/1379149#M814049</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Am I writing the below script correctly?&lt;/P&gt;&lt;P&gt;I am following on from a previous script that was a Fiscal Year Month which has a 'where exists group by' clause which also works. Mine however for the Fiscal Year Week does not work&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;// Structure load - Monthly&lt;BR /&gt;temp_Weekly_Validations:&lt;BR /&gt;Load &lt;BR /&gt;&amp;nbsp; [Country Code]&lt;BR /&gt;Resident Country;&lt;/P&gt;&lt;P&gt;Outer Join(temp_Weekly_Validations)&lt;BR /&gt;Load &lt;BR /&gt;&amp;nbsp; [Fiscal Year Week], &lt;BR /&gt;&amp;nbsp; null() as Date&lt;BR /&gt;&amp;nbsp; &lt;BR /&gt;Resident [Weekly Calendar];&lt;/P&gt;&lt;P&gt;Outer Join(temp_Weekly_Validations)&lt;BR /&gt;Load&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp; Weekly_Control, &lt;BR /&gt;&amp;nbsp; 0 as [Record Count], &lt;BR /&gt;&amp;nbsp; 0 as [Value Sum]&lt;BR /&gt;&amp;nbsp; &lt;BR /&gt;Resident Weekly_Controls&lt;BR /&gt;where Weekly_Control &amp;lt;&amp;gt; 'Avaya';&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Weekly_Validations:&lt;BR /&gt;NoConcatenate &lt;BR /&gt;Load&amp;nbsp; &lt;BR /&gt;&amp;nbsp; *,&amp;nbsp; &lt;BR /&gt;&amp;nbsp; Weekly_Control &amp;amp; '-' &amp;amp; [Country Code] &amp;amp; '-' &amp;amp; [Fiscal Year Week] as %ValidationKey&lt;BR /&gt;&amp;nbsp; &lt;BR /&gt;Resident temp_Weekly_Validations;&lt;/P&gt;&lt;P&gt;drop table temp_Weekly_Validations;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;// Structure load - Daily&lt;BR /&gt;temp_Weekly_Validations:&lt;BR /&gt;Load &lt;BR /&gt;&amp;nbsp; [Country Code] as [Country Code2]&lt;BR /&gt;&amp;nbsp; &lt;BR /&gt;Resident Country;&lt;/P&gt;&lt;P&gt;Outer Join(temp_Weekly_Validations)&lt;BR /&gt;Load &lt;BR /&gt;&amp;nbsp; null() as [Fiscal Week2], &lt;BR /&gt;&amp;nbsp; Date as Date2&lt;BR /&gt;&amp;nbsp; &lt;BR /&gt;Resident [Daily Calendar];&lt;/P&gt;&lt;P&gt;Outer Join(temp_Weekly_Validations)&lt;BR /&gt;Load &lt;BR /&gt;&amp;nbsp; Weekly_Control as Weekly_Control2, &lt;BR /&gt;&amp;nbsp; 0 as [Record Count2], &lt;BR /&gt;&amp;nbsp; 0 as [Value Sum2]&lt;BR /&gt;&amp;nbsp; &lt;BR /&gt;Resident Weekly_Controls&lt;BR /&gt;where Weekly_Control = 'Avaya';&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Weekly_Validations:&lt;BR /&gt;Load [Country Code2] as [Country Code],&lt;BR /&gt;&amp;nbsp; [Fiscal Week2] as [Fiscal Year Week],&lt;BR /&gt;&amp;nbsp; Date2 as Date,&lt;BR /&gt;&amp;nbsp; Weekly_Control2 as Weekly_Control,&lt;BR /&gt;&amp;nbsp; [Record Count2] as [Record Count],&lt;BR /&gt;&amp;nbsp; [Value Sum2] as [Value Sum],&lt;BR /&gt;&amp;nbsp; Weekly_Control2 &amp;amp; '-' &amp;amp; [Country Code2] &amp;amp; '-' &amp;amp; Date2 as %ValidationKey&lt;BR /&gt;Resident temp_Weekly_Validations;&lt;/P&gt;&lt;P&gt;drop table temp_Weekly_Validations;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Concatenate(Weekly_Validations)&lt;BR /&gt;LOAD &lt;BR /&gt; right(left(PurgeChar(%ClaimMeasuresKey,'-'),7),2) as [Country Code],&lt;BR /&gt; %ClaimMeasuresKey,&lt;BR /&gt; text(ApplyMap('MapDateToFiscalWeek', PurgeChar(Weekname(Date(left(PurgeChar(%ClaimMeasuresKey,'-'),5), 'YYYYMM')), '/'))) as [Fiscal Year Week],&lt;BR /&gt; null() as Date,&lt;BR /&gt; 'Claims Registered' as Weekly_Control,&lt;BR /&gt; count(reg_count) as [Record Count],&lt;BR /&gt; 0 as [Value Sum]&lt;BR /&gt;FROM &lt;BR /&gt;[$(vQVDs)\A_Claim_Measures.qvd]&lt;BR /&gt;(qvd)&lt;BR /&gt;&lt;STRONG&gt;where exists([Fiscal Year Week], text(ApplyMap('MapDateToFiscalWeek', PurgeChar(Weekname(Date(left(PurgeChar(%ClaimMeasuresKey,'-'),5), 'YYYYMM')), '/'))))&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;group by text(ApplyMap('MapDateToFiscalWeek', PurgeChar(Weekname(Date(left(PurgeChar(%ClaimMeasuresKey,'-'),5), 'YYYYMM')), '/'))), Subfield(%ClaimMeasuresKey, '-', 1);&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;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;My Fiscal Year Week appears as&lt;/P&gt;&lt;P&gt;201737&lt;/P&gt;&lt;P&gt;201736&lt;/P&gt;&lt;P&gt;201735 etc&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let vWeeklyStart = num(WeekStart(Today(), -13)); // 13 months back&lt;BR /&gt;Let vWeeklyEnd = num(WeekStart(Today(), -1)); // Last Month&lt;/P&gt;&lt;P&gt;[Weekly Calendar]:&lt;BR /&gt;LOAD distinct &lt;BR /&gt;&amp;nbsp; Fiscal_Year_Week as [Fiscal Year Week],&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Fiscal_Year &amp;amp; Fiscal_Week as [Fiscal Week]&lt;BR /&gt;FROM&lt;BR /&gt;[$(vQVDs)\T_Calendar_Test.qvd]&lt;BR /&gt;(qvd)&lt;BR /&gt;where num(Date) &amp;gt;= $(vWeeklyStart)&lt;BR /&gt;and num(Date) &amp;lt;= $(vWeeklyEnd);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Where-exists-and-group-by/m-p/1379149#M814049</guid>
      <dc:creator>bobbydave</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Where exists and group by</title>
      <link>https://community.qlik.com/t5/QlikView/Where-exists-and-group-by/m-p/1379150#M814050</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be move the Group By statement to the preceding load... something along these lines&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Concatenate(Weekly_Validations)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #ff0000;"&gt;LOAD [Country Code],&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; %ClaimMeasuresKey,&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Fiscal Year Week],&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; null() as Date,&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Claims Registered' as Weekly_Control,&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0 as [Value Sum],&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; count(reg_count) as [Record Count]&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #ff0000;"&gt;Group By [Country Code], %ClaimMeasuresKey, [Fiscal Year Week];&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;right(left(PurgeChar(%ClaimMeasuresKey,'-'),7),2) as [Country Code],&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;%ClaimMeasuresKey,&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;text(ApplyMap('MapDateToFiscalWeek', PurgeChar(Weekname(Date(left(PurgeChar(%ClaimMeasuresKey,'-'),5), 'YYYYMM')), '/'))) as [Fiscal Year Week],&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;reg_count&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FROM &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;[$(vQVDs)\A_Claim_Measures.qvd]&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;(qvd)&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;where exists([Fiscal Year Week], text(ApplyMap('MapDateToFiscalWeek', PurgeChar(Weekname(Date(left(PurgeChar(%ClaimMeasuresKey,'-'),5), 'YYYYMM')), '/'))));&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Sep 2017 11:39:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Where-exists-and-group-by/m-p/1379150#M814050</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-09-20T11:39:44Z</dc:date>
    </item>
    <item>
      <title>Re: Where exists and group by</title>
      <link>https://community.qlik.com/t5/QlikView/Where-exists-and-group-by/m-p/1379151#M814051</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Let me try this and come back to u&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Sep 2017 14:43:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Where-exists-and-group-by/m-p/1379151#M814051</guid>
      <dc:creator>bobbydave</dc:creator>
      <dc:date>2017-09-20T14:43:44Z</dc:date>
    </item>
    <item>
      <title>Re: Where exists and group by</title>
      <link>https://community.qlik.com/t5/QlikView/Where-exists-and-group-by/m-p/1379152#M814052</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunny,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've attached the qvw.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you look at the month, there is a where exists/group by and this works fine.&lt;/P&gt;&lt;P&gt;However, I am trying to do the same thing with the week, using the where exists/group by and it does not work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my expression, it show use sum, not count in the weekly like it does in the monthly expression and the monthly expression using sum, does equate to the correct number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When i try to look at the sum of Weekly Record Count, I get 0 but when i do a count, i get a value of 1.&lt;/P&gt;&lt;P&gt;It works perfectly fine for the Monthly Record Count.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I believe it is a result of the Where Exists/Group by in the Weekly tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help appreciated&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Sep 2017 11:33:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Where-exists-and-group-by/m-p/1379152#M814052</guid>
      <dc:creator>bobbydave</dc:creator>
      <dc:date>2017-09-21T11:33:25Z</dc:date>
    </item>
    <item>
      <title>Re: Where exists and group by</title>
      <link>https://community.qlik.com/t5/QlikView/Where-exists-and-group-by/m-p/1379153#M814053</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Any ideas you guys?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Sep 2017 13:12:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Where-exists-and-group-by/m-p/1379153#M814053</guid>
      <dc:creator>bobbydave</dc:creator>
      <dc:date>2017-09-21T13:12:06Z</dc:date>
    </item>
  </channel>
</rss>

