<?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 Help required in creating aggregation table! in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Help-required-in-creating-aggregation-table/m-p/223127#M587917</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Sorry! I didn't get you! I have used 'Sum(controlFlag)' in the expression but it is not working. If you have free time please try to do the required changes in the attached application it will be helpful for me. As I don't what changes has to be done in the front end I could proceed further.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 25 Apr 2011 13:05:48 GMT</pubDate>
    <dc:creator />
    <dc:date>2011-04-25T13:05:48Z</dc:date>
    <item>
      <title>Help required in creating aggregation table!</title>
      <link>https://community.qlik.com/t5/QlikView/Help-required-in-creating-aggregation-table/m-p/223123#M587913</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;The performance of one of my pivot table is very bad as it does lots of calcuation in the front end. So thought of creating the aggregation table so as to improve the performance of it. As I never created such aggregation table before can some one help me out on this please. I have given you the details about the tables as well as the pivot table. Also have attached the sample application as well.&lt;/P&gt;&lt;P&gt;Following are the tables(Data &amp;amp; Calendar) which are there in the attached application:&lt;/P&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;LOAD A1,&lt;BR /&gt; A2,&lt;BR /&gt; A3,&lt;BR /&gt; A4,&lt;BR /&gt; A5,&lt;BR /&gt; A6,&lt;BR /&gt; A7,&lt;BR /&gt; A8,&lt;BR /&gt; A9,&lt;BR /&gt; A10,&lt;BR /&gt; A11,&lt;BR /&gt; A12,&lt;BR /&gt; A13,&lt;BR /&gt; A14,&lt;BR /&gt; TimeStamp(A15) as StartDate,&lt;BR /&gt; TimeStamp(A16) as EndDate,&lt;BR /&gt; A17 as StartDate1,&lt;BR /&gt; A18 as EndDate1,&lt;BR /&gt; A19,&lt;BR /&gt; A20&lt;BR /&gt;FROM&lt;BR /&gt;&lt;C&gt;&lt;BR /&gt;(ooxml, embedded labels, table is Sheet1);&lt;/C&gt;&lt;/P&gt;&lt;P&gt;Calendar:&lt;/P&gt;&lt;P&gt;Load *,&lt;BR /&gt; Week(date) as Week,&lt;BR /&gt; Year(date) as Year,&lt;BR /&gt; WeekName(date) as WeekName,&lt;BR /&gt; MonthName(date) as MonthName&lt;BR /&gt; ;&lt;BR /&gt;&lt;BR /&gt;LOAD DISTINCT&lt;BR /&gt; DATE(StartDate+IterNo()-1) AS date&lt;BR /&gt;RESIDENT Data&lt;BR /&gt;WHILE StartDate+IterNo()-1&amp;lt;=EndDate;&lt;/P&gt;&lt;P&gt;Where as the pivot table contains:&lt;/P&gt;&lt;P&gt;Dimension:&lt;/P&gt;&lt;P&gt;A1&lt;/P&gt;&lt;P&gt;A10&lt;/P&gt;&lt;P&gt;StartDate&lt;/P&gt;&lt;P&gt;EndDate&lt;/P&gt;&lt;P&gt;Time(Group(Cyclic): Week,Year,WeekName,MonthName)&lt;/P&gt;&lt;P&gt;Expression:&lt;/P&gt;&lt;P&gt;SUM(IF(StartDate&amp;lt;=date AND EndDate&amp;gt;=date,1))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Apr 2011 06:14:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-required-in-creating-aggregation-table/m-p/223123#M587913</guid>
      <dc:creator />
      <dc:date>2011-04-20T06:14:37Z</dc:date>
    </item>
    <item>
      <title>Help required in creating aggregation table!</title>
      <link>https://community.qlik.com/t5/QlikView/Help-required-in-creating-aggregation-table/m-p/223124#M587914</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I didn't know which level you could aggregate, but in order to remove the if condition in your pivot table I created a table with one line for each day between start date and end date for each item of your table.&lt;/P&gt;&lt;P&gt;Basically, you get performance but you create more lines in you data model.&lt;/P&gt;&lt;P&gt;This is the code i got:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;&lt;BR /&gt;Data:&lt;BR /&gt;LOAD A1,&lt;BR /&gt; A10,&lt;BR /&gt; A1 &amp;amp; '|' &amp;amp; A10 as key,&lt;BR /&gt; A11,&lt;BR /&gt; A12,&lt;BR /&gt; A13,&lt;BR /&gt; A14,&lt;BR /&gt; A19,&lt;BR /&gt; A2,&lt;BR /&gt; A20,&lt;BR /&gt; A3,&lt;BR /&gt; A4,&lt;BR /&gt; A5,&lt;BR /&gt; A6,&lt;BR /&gt; A7,&lt;BR /&gt; A8,&lt;BR /&gt; A9,&lt;BR /&gt; EndDate,&lt;BR /&gt; EndDate1,&lt;BR /&gt; StartDate,&lt;BR /&gt; StartDate1&lt;BR /&gt;FROM&lt;BR /&gt;&lt;C&gt;&lt;BR /&gt;(biff, embedded labels, table is Sheet1$);&lt;BR /&gt;&lt;BR /&gt;Keys:&lt;BR /&gt;load distinct key, 1 as count_key&lt;BR /&gt;resident Data;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;min:&lt;BR /&gt;LOAD MIN(num(daystart(StartDate))) as minDate&lt;BR /&gt;resident Data;&lt;BR /&gt;&lt;BR /&gt;vMin = peek('minDate');&lt;BR /&gt;max:&lt;BR /&gt;LOAD max(num(daystart(EndDate)+1)) as maxDate&lt;BR /&gt;resident Data;&lt;BR /&gt;vMax = peek('maxDate');&lt;BR /&gt;&lt;BR /&gt;drop tables min, max;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;for refDate = $(vMin) to $(vMax)&lt;BR /&gt;&lt;BR /&gt;Event:&lt;BR /&gt;load key, $(refDate) as REFERENCE_DATE, 1 as controlFlag&lt;BR /&gt;&lt;BR /&gt;resident Data&lt;BR /&gt;where num(dayStart(StartDate)) &amp;lt;= $(refDate) and&lt;BR /&gt; num(dayStart(EndDate)+1) &amp;gt; $(refDate) ;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;next&lt;BR /&gt;&lt;BR /&gt;TRef_Calendar:&lt;BR /&gt;load distinct&lt;BR /&gt;REFERENCE_DATE&lt;BR /&gt;resident Event;&lt;BR /&gt;&lt;BR /&gt;Ref_Calendar:&lt;BR /&gt;load&lt;BR /&gt;REFERENCE_DATE,&lt;BR /&gt; Week(REFERENCE_DATE) as refWeek,&lt;BR /&gt; Year(REFERENCE_DATE) as refYear,&lt;BR /&gt; WeekName(REFERENCE_DATE) as refWeekName,&lt;BR /&gt; MonthName(REFERENCE_DATE) as refMonthName&lt;BR /&gt;resident Event;&lt;BR /&gt;&lt;BR /&gt;drop table TRef_Calendar;&lt;BR /&gt;Calendar:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Load *,&lt;BR /&gt; Week(date) as Week,&lt;BR /&gt; Year(date) as Year,&lt;BR /&gt; WeekName(date) as WeekName,&lt;BR /&gt; MonthName(date) as MonthName&lt;BR /&gt; ;&lt;BR /&gt;&lt;BR /&gt;LOAD DISTINCT&lt;BR /&gt; DATE(StartDate+IterNo()-1) AS date&lt;BR /&gt;RESIDENT Data&lt;BR /&gt;WHILE StartDate+IterNo()-1&amp;lt;=EndDate;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;exit script ;&lt;BR /&gt;&lt;BR /&gt;&lt;/C&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Apr 2011 03:43:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-required-in-creating-aggregation-table/m-p/223124#M587914</guid>
      <dc:creator>erichshiino</dc:creator>
      <dc:date>2011-04-23T03:43:45Z</dc:date>
    </item>
    <item>
      <title>Help required in creating aggregation table!</title>
      <link>https://community.qlik.com/t5/QlikView/Help-required-in-creating-aggregation-table/m-p/223125#M587915</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Erich Shiino&lt;/P&gt;&lt;P&gt;Thanks alot! Really a great effort!&lt;/P&gt;&lt;P&gt;By the way may I know what is that I have to do instead of 'IF Statement' in the expression. So that I can pass the same and see how it is performing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Apr 2011 11:43:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-required-in-creating-aggregation-table/m-p/223125#M587915</guid>
      <dc:creator />
      <dc:date>2011-04-25T11:43:24Z</dc:date>
    </item>
    <item>
      <title>Help required in creating aggregation table!</title>
      <link>https://community.qlik.com/t5/QlikView/Help-required-in-creating-aggregation-table/m-p/223126#M587916</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;With the new script, if you use the fields in Ref_Calendar, you already have this if condition that you had before in the pivot table.&lt;/P&gt;&lt;P&gt;If you want to count distinct values, you can just sum the controlFlag (there is one for each 'key' in the model (key is A1+A10)&lt;/P&gt;&lt;PRE style="margin:0px;"&gt;Ref_Calendar:&lt;BR /&gt;load&lt;BR /&gt;REFERENCE_DATE,&lt;BR /&gt; Week(REFERENCE_DATE) as refWeek,&lt;BR /&gt; Year(REFERENCE_DATE) as refYear,&lt;BR /&gt; WeekName(REFERENCE_DATE) as refWeekName,&lt;BR /&gt; MonthName(REFERENCE_DATE) as refMonthName&lt;BR /&gt;resident Event;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Rgds,&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Apr 2011 12:45:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-required-in-creating-aggregation-table/m-p/223126#M587916</guid>
      <dc:creator>erichshiino</dc:creator>
      <dc:date>2011-04-25T12:45:25Z</dc:date>
    </item>
    <item>
      <title>Help required in creating aggregation table!</title>
      <link>https://community.qlik.com/t5/QlikView/Help-required-in-creating-aggregation-table/m-p/223127#M587917</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Sorry! I didn't get you! I have used 'Sum(controlFlag)' in the expression but it is not working. If you have free time please try to do the required changes in the attached application it will be helpful for me. As I don't what changes has to be done in the front end I could proceed further.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Apr 2011 13:05:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-required-in-creating-aggregation-table/m-p/223127#M587917</guid>
      <dc:creator />
      <dc:date>2011-04-25T13:05:48Z</dc:date>
    </item>
    <item>
      <title>Help required in creating aggregation table!</title>
      <link>https://community.qlik.com/t5/QlikView/Help-required-in-creating-aggregation-table/m-p/223128#M587918</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Erich Shiino&lt;/P&gt;&lt;P&gt;Was I am not clear? If so please do let me know. If your clear about what I have asked then please try to help me out.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Apr 2011 11:25:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-required-in-creating-aggregation-table/m-p/223128#M587918</guid>
      <dc:creator />
      <dc:date>2011-04-26T11:25:59Z</dc:date>
    </item>
    <item>
      <title>Help required in creating aggregation table!</title>
      <link>https://community.qlik.com/t5/QlikView/Help-required-in-creating-aggregation-table/m-p/223129#M587919</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Can some one please help me out here. I didn't get any solution yet. It is very important for me to complete this task.&lt;/P&gt;&lt;P&gt;Hope you guys can understand that!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Apr 2011 12:48:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-required-in-creating-aggregation-table/m-p/223129#M587919</guid>
      <dc:creator />
      <dc:date>2011-04-28T12:48:08Z</dc:date>
    </item>
    <item>
      <title>Help required in creating aggregation table!</title>
      <link>https://community.qlik.com/t5/QlikView/Help-required-in-creating-aggregation-table/m-p/223130#M587920</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Please, check attachment. I left you table on the first sheet and created another one on the the other. I'm not sure how to get your results, for example, if select the dimension Year, i can get more than 365 in one line for one year. In my pivot I can not reproduce it. If you explain I can adjust the app.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry I couldn't send it before...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Apr 2011 20:56:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-required-in-creating-aggregation-table/m-p/223130#M587920</guid>
      <dc:creator>erichshiino</dc:creator>
      <dc:date>2011-04-28T20:56:03Z</dc:date>
    </item>
    <item>
      <title>Help required in creating aggregation table!</title>
      <link>https://community.qlik.com/t5/QlikView/Help-required-in-creating-aggregation-table/m-p/223131#M587921</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Erich Shiino&lt;/P&gt;&lt;P&gt;Yes I am not sure how to get the results. As I said some how I got the solution in the forum and luckily it is working. But only problem is there is lot of performance issue. I don't know what to explain as I got the expected result but the performance is is poor.&lt;/P&gt;&lt;P&gt;Look into it if you get any idea or else its ok. Anyway I am still working on the performance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Apr 2011 07:18:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-required-in-creating-aggregation-table/m-p/223131#M587921</guid>
      <dc:creator />
      <dc:date>2011-04-29T07:18:45Z</dc:date>
    </item>
    <item>
      <title>Help required in creating aggregation table!</title>
      <link>https://community.qlik.com/t5/QlikView/Help-required-in-creating-aggregation-table/m-p/223132#M587922</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;but is that result right? I mean, if I see only line and select year as dimension can it get to 800, for example?&lt;/P&gt;&lt;P&gt;I can't reproduce it because I don't know what that mean.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Apr 2011 11:49:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-required-in-creating-aggregation-table/m-p/223132#M587922</guid>
      <dc:creator>erichshiino</dc:creator>
      <dc:date>2011-04-29T11:49:50Z</dc:date>
    </item>
    <item>
      <title>Help required in creating aggregation table!</title>
      <link>https://community.qlik.com/t5/QlikView/Help-required-in-creating-aggregation-table/m-p/223133#M587923</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Erich Shiino&lt;/P&gt;&lt;P&gt;Yes I am getting the right result. Only concern is the performance.&lt;/P&gt;&lt;P&gt;I didn't understand what is that you have meant above. Could you please explain me in detail?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Apr 2011 12:33:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-required-in-creating-aggregation-table/m-p/223133#M587923</guid>
      <dc:creator />
      <dc:date>2011-04-29T12:33:26Z</dc:date>
    </item>
    <item>
      <title>Help required in creating aggregation table!</title>
      <link>https://community.qlik.com/t5/QlikView/Help-required-in-creating-aggregation-table/m-p/223134#M587924</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The example I created does not work for you, does it?&lt;/P&gt;&lt;P&gt;It can increase performance, we just need to adjust the expression but I don't know what your expression really is to make it work on my example.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Apr 2011 12:37:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-required-in-creating-aggregation-table/m-p/223134#M587924</guid>
      <dc:creator>erichshiino</dc:creator>
      <dc:date>2011-04-29T12:37:26Z</dc:date>
    </item>
    <item>
      <title>Help required in creating aggregation table!</title>
      <link>https://community.qlik.com/t5/QlikView/Help-required-in-creating-aggregation-table/m-p/223135#M587925</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes it works and performance has been improved as well. Only concern is the expression. I also don't know how to make it work. It looks like a simple 'IF Statment' only but don't know how it works. I got fed up to understand how it works &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Apr 2011 13:14:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-required-in-creating-aggregation-table/m-p/223135#M587925</guid>
      <dc:creator />
      <dc:date>2011-04-29T13:14:21Z</dc:date>
    </item>
    <item>
      <title>Help required in creating aggregation table!</title>
      <link>https://community.qlik.com/t5/QlikView/Help-required-in-creating-aggregation-table/m-p/223136#M587926</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'd like to understand this result to be able to reproduced it in the improved pivot table:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width:442pt;border-collapse:collapse;" width="587"&gt;&lt;COLGROUP&gt;&lt;COL span="2" style="width:74pt;mso-width-source:userset;mso-width-alt:3584;" width="98" /&gt;&lt;COL style="width:96pt;mso-width-source:userset;mso-width-alt:4681;" width="128" /&gt;&lt;COL style="width:83pt;mso-width-source:userset;mso-width-alt:4022;" width="110" /&gt;&lt;COL style="width:47pt;mso-width-source:userset;mso-width-alt:2267;" width="62" /&gt;&lt;COL style="width:68pt;mso-width-source:userset;mso-width-alt:3328;" width="91" /&gt;&lt;/COLGROUP&gt;&lt;TBODY&gt;&lt;TR style="height:12.75pt;"&gt;&lt;TD class="xl63" height="17" style="border-right:gainsboro 0.5pt solid;border-top:gainsboro 1pt solid;border-left:gainsboro 0.5pt solid;width:74pt;border-bottom:gainsboro 0.5pt solid;height:12.75pt;background-color:whitesmoke;" width="98"&gt;&lt;STRONG&gt;A1&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD class="xl63" style="border-right:gainsboro 0.5pt solid;border-top:gainsboro 1pt solid;border-left:gainsboro;width:74pt;border-bottom:gainsboro 0.5pt solid;background-color:whitesmoke;" width="98"&gt;&lt;STRONG&gt;A10&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD class="xl63" style="border-right:gainsboro 0.5pt solid;border-top:gainsboro 1pt solid;border-left:gainsboro;width:96pt;border-bottom:gainsboro 0.5pt solid;background-color:whitesmoke;" width="128"&gt;&lt;STRONG&gt;StartDate&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD class="xl63" style="border-right:gainsboro 0.5pt solid;border-top:gainsboro 1pt solid;border-left:gainsboro;width:83pt;border-bottom:gainsboro 0.5pt solid;background-color:whitesmoke;" width="110"&gt;&lt;STRONG&gt;EndDate&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD class="xl64" style="border-right:gainsboro 0.5pt solid;border-top:gainsboro 0.5pt solid;border-left:gainsboro 1pt solid;width:47pt;border-bottom:gainsboro 1pt solid;background-color:whitesmoke;" width="62"&gt;&lt;STRONG&gt;Time&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD class="xl65" style="border-right:gainsboro 0.5pt solid;border-top:gainsboro 0.5pt solid;border-left:gainsboro;width:68pt;border-bottom:gainsboro 0.5pt solid;background-color:white;" width="91"&gt;2010/52&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height:12.75pt;"&gt;&lt;TD align="right" class="xl65" height="17" style="border-right:gainsboro 0.5pt solid;border-top:gainsboro;border-left:gainsboro 0.5pt solid;border-bottom:gainsboro 0.5pt solid;height:12.75pt;background-color:white;"&gt;21268&lt;/TD&gt;&lt;TD class="xl65" style="border-right:gainsboro 0.5pt solid;border-top:gainsboro;border-left:gainsboro;border-bottom:gainsboro 0.5pt solid;background-color:white;"&gt;Qpksnr g vfmdlz Cfxúe Vqsbdasw&lt;/TD&gt;&lt;TD class="xl66" style="border-right:gainsboro 0.5pt solid;border-top:gainsboro;border-left:gainsboro;border-bottom:gainsboro 0.5pt solid;background-color:white;"&gt;15/03/2010 11:51:00&lt;/TD&gt;&lt;TD class="xl67" style="border-right:#d4d0c8;border-top:gainsboro;border-left:gainsboro;border-bottom:gainsboro 0.5pt solid;background-color:white;"&gt;01/04/2011 09:55:00&lt;/TD&gt;&lt;TD class="xl68" style="border-right:gainsboro 0.5pt solid;border-top:gainsboro 0.5pt solid;border-left:#d4d0c8;border-bottom:gainsboro 0.5pt solid;background-color:white;"&gt;&lt;/TD&gt;&lt;TD align="right" class="xl69" style="border-right:gainsboro 0.5pt solid;border-top:gainsboro;border-left:gainsboro;border-bottom:gainsboro 0.5pt solid;background-color:green;"&gt;36&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;P&gt;Why this result within one week is 36? Shouldn't it be 7?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Apr 2011 13:58:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-required-in-creating-aggregation-table/m-p/223136#M587926</guid>
      <dc:creator>erichshiino</dc:creator>
      <dc:date>2011-04-29T13:58:54Z</dc:date>
    </item>
    <item>
      <title>Help required in creating aggregation table!</title>
      <link>https://community.qlik.com/t5/QlikView/Help-required-in-creating-aggregation-table/m-p/223137#M587927</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Erich Shiino&lt;/P&gt;&lt;P&gt;Even I also don't know what is that '36' in that. Also I don't wanted to display any values in it. I just wanted the background color start from StartDate and ends at the EndDate. So as to avoid displaying that numbers in the background I gave the same condition from the text as well.&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;P&gt;In the above output in the green background, color of the number is also in green. So the numbers will not be visible in that.&lt;/P&gt;&lt;P&gt;But I guess there is something which that number does thats why they are using the chart. Still I couldn' t understand what is the number does there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 May 2011 06:28:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-required-in-creating-aggregation-table/m-p/223137#M587927</guid>
      <dc:creator />
      <dc:date>2011-05-02T06:28:47Z</dc:date>
    </item>
  </channel>
</rss>

