<?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: Resident Syntax in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Resident-Syntax/m-p/909375#M653476</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;please can you give requirements (date ranges) to be calculated for avg in script&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 04 Aug 2015 08:48:44 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2015-08-04T08:48:44Z</dc:date>
    <item>
      <title>Resident Syntax</title>
      <link>https://community.qlik.com/t5/QlikView/Resident-Syntax/m-p/909370#M653471</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IN the below Syntax i am using Resident Table for Grouping.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And if you look at the Productivity Table &amp;amp; Resident Table New ,&amp;nbsp; ID is used as Key.Iinstead of it I need to use the actual Key field&amp;nbsp; in Productivity table as Key for both the tables so that when i select date the average Bucket is calculated for the selected dates .In the below script irrespective of date selected the average is calculated for all dates.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MTS:&lt;/P&gt;&lt;P&gt;MAPPING LOAD [Opr Initials],&lt;/P&gt;&lt;P&gt;ID&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;C&gt;&lt;/C&gt;&lt;/P&gt;&lt;P&gt;(biff, embedded labels, table is [Sheet2$]);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tab:&lt;/P&gt;&lt;P&gt;LOAD [@1:4] as Interval1,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [@5:12] as ID1,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [@13:18] as [Dept ID],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [@19:30] as Status,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [@31:41] as Handled,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [@42:n] as Closed,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Subfield(FileName(),'.',1) AS Date_Test&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;C&gt;&lt;/C&gt;&lt;/P&gt;&lt;P&gt;(fix, codepage is 1252);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;Productivity:&lt;/P&gt;&lt;P&gt;LOAD Date(Date#(Date_Test,'YYYY-MM-DD'),'YYYY-MM-DD') As Date,&lt;/P&gt;&lt;P&gt;&amp;nbsp; if(len(trim(Interval1))=0,peek('Interval'),Interval1) AS Interval,&lt;/P&gt;&lt;P&gt;&amp;nbsp; if(len(trim(ID1))=0,peek('ID'),ID1) AS ID,&lt;/P&gt;&lt;P&gt;&amp;nbsp; 'SCSTAR' as Source,&lt;/P&gt;&lt;P&gt;if(len(trim(ID1))=0,peek('ID'),ID1) &amp;amp; Date(Date#(Date_Test,'YYYY-MM-DD'),'YYYY-MM-DD')&amp;nbsp; as Key,&lt;/P&gt;&lt;P&gt;&amp;nbsp; *&lt;/P&gt;&lt;P&gt;&amp;nbsp; Resident Tab Where len(Trim([Dept ID]))&amp;gt;0;&lt;/P&gt;&lt;P&gt;DROP Table Tab;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP Fields Interval1,ID1,Date_Test;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Concatenate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD Date,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Opr Initials],&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ApplyMap('MTS',[Opr Initials]) as ID,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; OFP,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; OFA,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; OFP+OFA as Handled,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'JPN' as [Dept ID],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'MTS-JPN' as Source,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ApplyMap('MTS',[Opr Initials]) &amp;amp;&amp;nbsp; Date as Key,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Memo&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;C&gt;&lt;/C&gt;&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is List_Frame_1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Concatenate&lt;/P&gt;&lt;P&gt;LOAD [Maker BankID] as ID,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date(Date#([Date (DD/MM/YYYY)],'DD/MM/YYYY'),'YYYY-MM-DD')as Date,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Volume as Handled,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'FFT' as [Dept ID],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'MTS-FFT' as Source,&lt;/P&gt;&lt;P&gt;[Maker BankID] &amp;amp; Date(Date#([Date (DD/MM/YYYY)],'DD/MM/YYYY'),'YYYY-MM-DD')as Key,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Role (50)]&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;C&gt;&lt;/C&gt;&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;New:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;ID,&lt;/P&gt;&lt;P&gt;//Sum(Handled)/Count(Distinct(Date)) as AvgHandled,&lt;/P&gt;&lt;P&gt;if(Sum(Handled)/Count(Distinct(Date)) &amp;lt; 400, '0-400',&lt;/P&gt;&lt;P&gt;&amp;nbsp; if(Sum(Handled)/Count(Distinct(Date)) &amp;lt; 800, '400-800',&lt;/P&gt;&lt;P&gt;&amp;nbsp; if(Sum(Handled)/Count(Distinct(Date)) &amp;lt; 1000, '800-1000',&lt;/P&gt;&lt;P&gt;&amp;nbsp; if(Sum(Handled)/Count(Distinct(Date)) &amp;lt; 1500, '1000-1500', '&amp;gt; 1500')))) as Average&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Resident Productivity&lt;/P&gt;&lt;P&gt;Group by ID;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;How do i link dates between both Productivity &amp;amp; New table&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Attaching teh QVW&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Aug 2015 06:53:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Resident-Syntax/m-p/909370#M653471</guid>
      <dc:creator />
      <dc:date>2015-08-04T06:53:54Z</dc:date>
    </item>
    <item>
      <title>Re: Resident Syntax</title>
      <link>https://community.qlik.com/t5/QlikView/Resident-Syntax/m-p/909371#M653472</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;use interval function for creating buckets for calculating avg&amp;nbsp; for specific date ranges.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Neetha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Aug 2015 08:41:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Resident-Syntax/m-p/909371#M653472</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-08-04T08:41:45Z</dc:date>
    </item>
    <item>
      <title>Re: Resident Syntax</title>
      <link>https://community.qlik.com/t5/QlikView/Resident-Syntax/m-p/909372#M653473</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Because the table (New) with the average values is associated only by ID, so the average will be for possible values ID, regardless of date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want user selectable date ranges, then the Average should be calculated in the front end expressions and not in the script.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Aug 2015 08:42:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Resident-Syntax/m-p/909372#M653473</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2015-08-04T08:42:55Z</dc:date>
    </item>
    <item>
      <title>Re: Resident Syntax</title>
      <link>https://community.qlik.com/t5/QlikView/Resident-Syntax/m-p/909373#M653474</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;Am not sure I fully understand your point. But I think you can bring in the Date field from Productivity Table since you're using Resident to create the New table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So just add Date field into the New table and that should work&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Aug 2015 08:43:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Resident-Syntax/m-p/909373#M653474</guid>
      <dc:creator>Gabriel</dc:creator>
      <dc:date>2015-08-04T08:43:55Z</dc:date>
    </item>
    <item>
      <title>Re: Resident Syntax</title>
      <link>https://community.qlik.com/t5/QlikView/Resident-Syntax/m-p/909374#M653475</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am really new to Qlikview.Can you help me out in writing teh syntax&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Aug 2015 08:43:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Resident-Syntax/m-p/909374#M653475</guid>
      <dc:creator />
      <dc:date>2015-08-04T08:43:58Z</dc:date>
    </item>
    <item>
      <title>Re: Resident Syntax</title>
      <link>https://community.qlik.com/t5/QlikView/Resident-Syntax/m-p/909375#M653476</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;please can you give requirements (date ranges) to be calculated for avg in script&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Aug 2015 08:48:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Resident-Syntax/m-p/909375#M653476</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-08-04T08:48:44Z</dc:date>
    </item>
    <item>
      <title>Re: Resident Syntax</title>
      <link>https://community.qlik.com/t5/QlikView/Resident-Syntax/m-p/909376#M653477</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If i write it this way &lt;/P&gt;&lt;P&gt;New:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;ID , Date,&lt;/P&gt;&lt;P&gt; if(Sum(Handled)/Count(Distinct(Date)) &amp;lt; 400, '0-400', &lt;/P&gt;&lt;P&gt;&amp;nbsp; if(Sum(Handled)/Count(Distinct(Date)) &amp;lt; 800, '400-800',&lt;/P&gt;&lt;P&gt;&amp;nbsp; if(Sum(Handled)/Count(Distinct(Date)) &amp;lt; 1000, '800-1000',&lt;/P&gt;&lt;P&gt;&amp;nbsp; if(Sum(Handled)/Count(Distinct(Date)) &amp;lt; 1500, '1000-1500', '&amp;gt; 1500')))) as Average&lt;/P&gt;&lt;P&gt;&amp;nbsp; Resident Productivity &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; Group BY ID;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It says Invalid exopression and more over it will create Sysnthetic Key as i have both ID &amp;amp; Date so if change ID as ID1 then group by Doesnot work .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And if i change Group by ID1; then it throws as error saying Field ID1 doesnot exist&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Aug 2015 08:48:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Resident-Syntax/m-p/909376#M653477</guid>
      <dc:creator />
      <dc:date>2015-08-04T08:48:45Z</dc:date>
    </item>
    <item>
      <title>Re: Resident Syntax</title>
      <link>https://community.qlik.com/t5/QlikView/Resident-Syntax/m-p/909377#M653478</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Include date in group by or exclude date in load statement for group by&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Aug 2015 08:50:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Resident-Syntax/m-p/909377#M653478</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-08-04T08:50:24Z</dc:date>
    </item>
    <item>
      <title>Re: Resident Syntax</title>
      <link>https://community.qlik.com/t5/QlikView/Resident-Syntax/m-p/909378#M653479</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am able to get average outside scrip in graph but if i want to bucklt each agent under a varios bucklets to see the locationwise Count under each bucket then i need to do it Script only right.Is &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Aug 2015 08:50:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Resident-Syntax/m-p/909378#M653479</guid>
      <dc:creator />
      <dc:date>2015-08-04T08:50:28Z</dc:date>
    </item>
    <item>
      <title>Re: Resident Syntax</title>
      <link>https://community.qlik.com/t5/QlikView/Resident-Syntax/m-p/909379#M653480</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i cannot add date in group by as I wanted the Average for the entire period and if i add date in group it stars calculating teh avg for each dates and creates bucket so finally one officer will have many buckets&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Aug 2015 08:53:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Resident-Syntax/m-p/909379#M653480</guid>
      <dc:creator />
      <dc:date>2015-08-04T08:53:32Z</dc:date>
    </item>
    <item>
      <title>Re: Resident Syntax</title>
      <link>https://community.qlik.com/t5/QlikView/Resident-Syntax/m-p/909380#M653481</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just try in teh QVW which i have attached to see if it works at your end&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Aug 2015 08:54:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Resident-Syntax/m-p/909380#M653481</guid>
      <dc:creator />
      <dc:date>2015-08-04T08:54:07Z</dc:date>
    </item>
    <item>
      <title>Re: Resident Syntax</title>
      <link>https://community.qlik.com/t5/QlikView/Resident-Syntax/m-p/909381#M653482</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;Please be specific what you want to achieve.&lt;/P&gt;&lt;P&gt;so can help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Aug 2015 09:02:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Resident-Syntax/m-p/909381#M653482</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-08-04T09:02:22Z</dc:date>
    </item>
    <item>
      <title>Re: Resident Syntax</title>
      <link>https://community.qlik.com/t5/QlikView/Resident-Syntax/m-p/909382#M653483</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use Aggr function&amp;nbsp; in expression in UI to group by ID&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Aug 2015 09:06:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Resident-Syntax/m-p/909382#M653483</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-08-04T09:06:26Z</dc:date>
    </item>
    <item>
      <title>Re: Resident Syntax</title>
      <link>https://community.qlik.com/t5/QlikView/Resident-Syntax/m-p/909383#M653484</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I wanted to get output like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" width="588"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="xl68" height="17" width="98"&gt;Location&lt;/TD&gt;&lt;TD class="xl69" style="border-left: none;" width="98"&gt;Average&lt;/TD&gt;&lt;TD class="xl70" style="border-left: none;" width="98"&gt;0-400&lt;/TD&gt;&lt;TD class="xl70" style="border-left: none;" width="98"&gt;400-800&lt;/TD&gt;&lt;TD class="xl70" style="border-left: none;" width="98"&gt;800-1000&lt;/TD&gt;&lt;TD class="xl71" style="border-left: none;" width="98"&gt;1000-1500&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl72" height="17" style="border-top: none;"&gt;Bangalore&lt;/TD&gt;&lt;TD class="xl65" style="border-top: none; border-left: none;"&gt; &lt;/TD&gt;&lt;TD align="right" class="xl66" style="border-top: none; border-left: none;"&gt;10&lt;/TD&gt;&lt;TD align="right" class="xl66" style="border-top: none; border-left: none;"&gt;6&lt;/TD&gt;&lt;TD align="right" class="xl66" style="border-top: none; border-left: none;"&gt;4&lt;/TD&gt;&lt;TD align="right" class="xl73" style="border-top: none; border-left: none;"&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl72" height="17" style="border-top: none;"&gt;Haddows&lt;/TD&gt;&lt;TD class="xl65" style="border-top: none; border-left: none;"&gt; &lt;/TD&gt;&lt;TD align="right" class="xl66" style="border-top: none; border-left: none;"&gt;15&lt;/TD&gt;&lt;TD align="right" class="xl66" style="border-top: none; border-left: none;"&gt;6&lt;/TD&gt;&lt;TD class="xl67" style="border-top: none; border-left: none;"&gt;-&lt;/TD&gt;&lt;TD class="xl74" style="border-top: none; border-left: none;"&gt;-&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl72" height="17" style="border-top: none;"&gt;Haddows - TCS&lt;/TD&gt;&lt;TD class="xl65" style="border-top: none; border-left: none;"&gt; &lt;/TD&gt;&lt;TD align="right" class="xl66" style="border-top: none; border-left: none;"&gt;8&lt;/TD&gt;&lt;TD class="xl67" style="border-top: none; border-left: none;"&gt;-&lt;/TD&gt;&lt;TD class="xl67" style="border-top: none; border-left: none;"&gt;-&lt;/TD&gt;&lt;TD class="xl74" style="border-top: none; border-left: none;"&gt;-&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl72" height="17" style="border-top: none;"&gt;Kenya&lt;/TD&gt;&lt;TD class="xl65" style="border-top: none; border-left: none;"&gt; &lt;/TD&gt;&lt;TD align="right" class="xl66" style="border-top: none; border-left: none;"&gt;3&lt;/TD&gt;&lt;TD align="right" class="xl66" style="border-top: none; border-left: none;"&gt;1&lt;/TD&gt;&lt;TD class="xl67" style="border-top: none; border-left: none;"&gt;-&lt;/TD&gt;&lt;TD class="xl74" style="border-top: none; border-left: none;"&gt;-&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl72" height="17" style="border-top: none;"&gt;KL&lt;/TD&gt;&lt;TD class="xl65" style="border-top: none; border-left: none;"&gt; &lt;/TD&gt;&lt;TD align="right" class="xl66" style="border-top: none; border-left: none;"&gt;3&lt;/TD&gt;&lt;TD align="right" class="xl66" style="border-top: none; border-left: none;"&gt;1&lt;/TD&gt;&lt;TD class="xl67" style="border-top: none; border-left: none;"&gt;-&lt;/TD&gt;&lt;TD class="xl74" style="border-top: none; border-left: none;"&gt;-&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl72" height="17" style="border-top: none;"&gt;Padur&lt;/TD&gt;&lt;TD class="xl65" style="border-top: none; border-left: none;"&gt; &lt;/TD&gt;&lt;TD align="right" class="xl66" style="border-top: none; border-left: none;"&gt;1&lt;/TD&gt;&lt;TD align="right" class="xl66" style="border-top: none; border-left: none;"&gt;2&lt;/TD&gt;&lt;TD align="right" class="xl66" style="border-top: none; border-left: none;"&gt;2&lt;/TD&gt;&lt;TD class="xl74" style="border-top: none; border-left: none;"&gt;-&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl75" height="18" style="border-top: none;"&gt;Tianjin&lt;/TD&gt;&lt;TD class="xl76" style="border-top: none; border-left: none;"&gt; &lt;/TD&gt;&lt;TD align="right" class="xl77" style="border-top: none; border-left: none;"&gt;13&lt;/TD&gt;&lt;TD align="right" class="xl77" style="border-top: none; border-left: none;"&gt;3&lt;/TD&gt;&lt;TD class="xl78" style="border-top: none; border-left: none;"&gt;-&lt;/TD&gt;&lt;TD class="xl79" style="border-top: none; border-left: none;"&gt;-&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Aug 2015 09:09:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Resident-Syntax/m-p/909383#M653484</guid>
      <dc:creator />
      <dc:date>2015-08-04T09:09:56Z</dc:date>
    </item>
  </channel>
</rss>

