<?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: Calculation Question in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Calculation-Question/m-p/109053#M751038</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Here is my sample script that i used to &lt;SPAN style="font-size: 13.3333px;"&gt;analyse &lt;/SPAN&gt;Access Control System data. Its looks like similar with your requirements.&lt;/P&gt;&lt;P&gt;Data structure is:&lt;/P&gt;&lt;P&gt;DateTime, Day, Time, User, InOut&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//Creating additional measures for length between IN and OUT event&amp;nbsp; per User, per Day&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;*,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;if(InOut='Out' and Peek(&lt;SPAN style="font-size: 13.3333px;"&gt;InOut&lt;/SPAN&gt;)='In', Interval([&lt;SPAN style="font-size: 13.3333px;"&gt;Time&lt;/SPAN&gt;]-peek([&lt;SPAN style="font-size: 13.3333px;"&gt;Time&lt;/SPAN&gt;]),'hh:mm'), Null()) as WorkInterval,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;if(&lt;SPAN style="font-size: 13.3333px;"&gt;InOut&lt;/SPAN&gt;='In' and Peek(&lt;SPAN style="font-size: 13.3333px;"&gt;InOut&lt;/SPAN&gt;)='Out', Interval([&lt;SPAN style="font-size: 13.3333px;"&gt;Time&lt;/SPAN&gt;]-peek([&lt;SPAN style="font-size: 13.3333px;"&gt;Time&lt;/SPAN&gt;]),'hh:mm'), Null()) as PauseInterval&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Resident Tab&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Order by Day, User, [Time];&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;...&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;// Calculate &lt;SPAN style="font-size: 13.3333px;"&gt;User &lt;/SPAN&gt;indicators&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Persons:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;NoConcatenate LOAD&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-size: 13.3333px;"&gt;User&lt;/SPAN&gt;,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Count(DISTINCT [Day]) as VisitDays,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Count(DISTINCT [Day])/$(vTotalDaysCount) as Attendance&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Resident Int&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Group by [&lt;SPAN style="font-size: 13.3333px;"&gt;User&lt;/SPAN&gt;];&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So i use &lt;SPAN style="font-size: 13.3333px;"&gt;Attendance value to determine office workers and another staff. (Ex: Attendance &amp;gt; 0.7)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 06 Nov 2018 12:24:38 GMT</pubDate>
    <dc:creator>Zhandos_Shotan</dc:creator>
    <dc:date>2018-11-06T12:24:38Z</dc:date>
    <item>
      <title>Calculation Question</title>
      <link>https://community.qlik.com/t5/QlikView/Calculation-Question/m-p/109046#M751031</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not sure if this can be done due to the structure of my data but.......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to work out some average customer timelines. I have a static excel file with all the data on that lists each customer interaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On each line there are two customer unique ID codes that that customer has for life irrespective of the interactions we may have with them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On the line there will also be a couple of location codes and a date/time stamp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What i want to do is work out the length of time that customer has spent at a location (based on subtracting the timestamp from both lines) and then determine the average time that customers spend at that given location.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To make things more &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/alert.png" /&gt; complicated, customers may often bounce between locations and home and i won't know when they've gone home so i think i'll probably need to have a filter that says something like "if we cant find customer A after X number of days then ignore"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is that making sense?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below is a rough mock up of the data:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" width="581"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="xl65" height="20" width="87"&gt;Unique ID 1&lt;/TD&gt;&lt;TD class="xl65" style="border-left: none;" width="98"&gt;Unique ID 2&lt;/TD&gt;&lt;TD class="xl65" style="border-left: none;" width="75"&gt;ID&lt;/TD&gt;&lt;TD class="xl65" style="border-left: none;" width="134"&gt;Date Stamp&lt;/TD&gt;&lt;TD class="xl65" style="border-left: none;" width="74"&gt;Location A&lt;/TD&gt;&lt;TD class="xl65" style="border-left: none;" width="113"&gt;Location B&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" class="xl65" height="20" style="border-top: none;"&gt;1234&lt;/TD&gt;&lt;TD align="right" class="xl65" style="border-top: none; border-left: none;"&gt;5678&lt;/TD&gt;&lt;TD class="xl65" style="border-top: none; border-left: none;"&gt;John Smith&lt;/TD&gt;&lt;TD align="right" class="xl66" style="border-top: none; border-left: none;"&gt;03/10/2014 19:15&lt;/TD&gt;&lt;TD class="xl65" style="border-top: none; border-left: none;"&gt;Shop 1&lt;/TD&gt;&lt;TD class="xl65" style="border-top: none; border-left: none;"&gt;Shop 2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" class="xl65" height="20" style="border-top: none;"&gt;2345&lt;/TD&gt;&lt;TD align="right" class="xl65" style="border-top: none; border-left: none;"&gt;6789&lt;/TD&gt;&lt;TD class="xl65" style="border-top: none; border-left: none;"&gt;Fred Jones&lt;/TD&gt;&lt;TD align="right" class="xl66" style="border-top: none; border-left: none;"&gt;03/10/2014 20:05&lt;/TD&gt;&lt;TD class="xl65" style="border-top: none; border-left: none;"&gt;Shop 2&lt;/TD&gt;&lt;TD class="xl65" style="border-top: none; border-left: none;"&gt;Shop 1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" class="xl65" height="20" style="border-top: none;"&gt;1234&lt;/TD&gt;&lt;TD align="right" class="xl65" style="border-top: none; border-left: none;"&gt;5678&lt;/TD&gt;&lt;TD class="xl65" style="border-top: none; border-left: none;"&gt;John Smith&lt;/TD&gt;&lt;TD align="right" class="xl66" style="border-top: none; border-left: none;"&gt;05/10/2014 17:00&lt;/TD&gt;&lt;TD class="xl65" style="border-top: none; border-left: none;"&gt;Shop 2&lt;/TD&gt;&lt;TD class="xl65" style="border-top: none; border-left: none;"&gt;Shop 3&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;So in this example i would subtract the two John Smith date stamps and it would spit out an answer of 45 hours and 45 minutes for time spent at 'Shop 2' and i would then want to look at all of those results for 'Shop 2' and produce an average.&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/Calculation-Question/m-p/109046#M751031</guid>
      <dc:creator>peterderrington</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Calculation Question</title>
      <link>https://community.qlik.com/t5/QlikView/Calculation-Question/m-p/109047#M751032</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Peter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it important that JS's 1st entry Location B=JS's second entry Location A?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chris.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Nov 2018 17:19:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculation-Question/m-p/109047#M751032</guid>
      <dc:creator>chrismarlow</dc:creator>
      <dc:date>2018-11-05T17:19:00Z</dc:date>
    </item>
    <item>
      <title>Re: Calculation Question</title>
      <link>https://community.qlik.com/t5/QlikView/Calculation-Question/m-p/109048#M751033</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chris,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I’m trying to initially determine the length of time at that location. The first instance tells me when they left the 1st location and the 2nd instance tells me when they left the second location which can then give me the length of time at the second location.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From that I should be able to start to build up a while customer journey and generate stats on certain sections.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Nov 2018 18:35:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculation-Question/m-p/109048#M751033</guid>
      <dc:creator>peterderrington</dc:creator>
      <dc:date>2018-11-05T18:35:28Z</dc:date>
    </item>
    <item>
      <title>Re: Calculation Question</title>
      <link>https://community.qlik.com/t5/QlikView/Calculation-Question/m-p/109049#M751034</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Peter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I looked at using above &amp;amp; interval in a straight table, and come up with a chart showing your 45 hours, but as soon as I make a selection on the location it falls away;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="318939.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/217577_318939.png" style="width: 620px; height: 80px;" /&gt;&lt;/P&gt;&lt;P&gt;Might need something in script to get the start &amp;amp; end date/times in the same row, will have another look.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chris.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Nov 2018 20:22:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculation-Question/m-p/109049#M751034</guid>
      <dc:creator>chrismarlow</dc:creator>
      <dc:date>2018-11-05T20:22:04Z</dc:date>
    </item>
    <item>
      <title>Re: Calculation Question</title>
      <link>https://community.qlik.com/t5/QlikView/Calculation-Question/m-p/109050#M751035</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Chris, I appreciate you taking a look.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will ultimately be imported from excel to a sql database for QlikView to reload from if that makes it any easier?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Nov 2018 20:29:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculation-Question/m-p/109050#M751035</guid>
      <dc:creator>peterderrington</dc:creator>
      <dc:date>2018-11-05T20:29:29Z</dc:date>
    </item>
    <item>
      <title>Re: Calculation Question</title>
      <link>https://community.qlik.com/t5/QlikView/Calculation-Question/m-p/109051#M751036</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Peter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I think a script solution will ultimately be more robust, but found this &lt;A href="https://community.qlik.com/message/1551490"&gt;Filter Issue while using ABOVE Function&lt;/A&gt; &amp;amp; suggests this can be done in charts, with the bit in bold being where the selection on location is taken out (so if you have other possible selections that may need extended);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;interval(only([Date Stamp])-aggr(above(FirstSortedValue({&amp;lt; &lt;STRONG&gt;[Location A]&lt;/STRONG&gt;&amp;gt;}distinct [Date Stamp],-[Date Stamp])) , [ID],[Date Stamp]),'hh:mm')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Giving;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="318939_2.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/217578_318939_2.png" style="width: 620px; height: 215px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chris.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Nov 2018 20:59:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculation-Question/m-p/109051#M751036</guid>
      <dc:creator>chrismarlow</dc:creator>
      <dc:date>2018-11-05T20:59:49Z</dc:date>
    </item>
    <item>
      <title>Re: Calculation Question</title>
      <link>https://community.qlik.com/t5/QlikView/Calculation-Question/m-p/109052#M751037</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Peter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In terms of fixing upstream (as in not in the charts), you mention SQL that gives you (at least these) options;&lt;/P&gt;&lt;P&gt;1) You could join the date from record before into a new column on the SQL table&lt;/P&gt;&lt;P&gt;2) You could create a SQL view that did the join between the table and itself&lt;/P&gt;&lt;P&gt;3) You could use a SSAS model &amp;amp; join in that&lt;/P&gt;&lt;P&gt;4) Still do join in QlikView, but in script sorting your load &amp;amp; using if &amp;amp; previous function &lt;A href="https://help.qlik.com/en-US/sense/September2018/Subsystems/Hub/Content/Sense_Hub/Scripting/InterRecordFunctions/Previous.htm" title="https://help.qlik.com/en-US/sense/September2018/Subsystems/Hub/Content/Sense_Hub/Scripting/InterRecordFunctions/Previous.htm"&gt;https://help.qlik.com/en-US/sense/September2018/Subsystems/Hub/Content/Sense_Hub/Scripting/InterRecordFunctions/Previous.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There will be advantages and disadvantages to all of these, would depend on your circumstances/preference.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chris.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Nov 2018 08:23:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculation-Question/m-p/109052#M751037</guid>
      <dc:creator>chrismarlow</dc:creator>
      <dc:date>2018-11-06T08:23:38Z</dc:date>
    </item>
    <item>
      <title>Re: Calculation Question</title>
      <link>https://community.qlik.com/t5/QlikView/Calculation-Question/m-p/109053#M751038</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Here is my sample script that i used to &lt;SPAN style="font-size: 13.3333px;"&gt;analyse &lt;/SPAN&gt;Access Control System data. Its looks like similar with your requirements.&lt;/P&gt;&lt;P&gt;Data structure is:&lt;/P&gt;&lt;P&gt;DateTime, Day, Time, User, InOut&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;//Creating additional measures for length between IN and OUT event&amp;nbsp; per User, per Day&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;*,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;if(InOut='Out' and Peek(&lt;SPAN style="font-size: 13.3333px;"&gt;InOut&lt;/SPAN&gt;)='In', Interval([&lt;SPAN style="font-size: 13.3333px;"&gt;Time&lt;/SPAN&gt;]-peek([&lt;SPAN style="font-size: 13.3333px;"&gt;Time&lt;/SPAN&gt;]),'hh:mm'), Null()) as WorkInterval,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;if(&lt;SPAN style="font-size: 13.3333px;"&gt;InOut&lt;/SPAN&gt;='In' and Peek(&lt;SPAN style="font-size: 13.3333px;"&gt;InOut&lt;/SPAN&gt;)='Out', Interval([&lt;SPAN style="font-size: 13.3333px;"&gt;Time&lt;/SPAN&gt;]-peek([&lt;SPAN style="font-size: 13.3333px;"&gt;Time&lt;/SPAN&gt;]),'hh:mm'), Null()) as PauseInterval&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Resident Tab&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Order by Day, User, [Time];&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;...&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;// Calculate &lt;SPAN style="font-size: 13.3333px;"&gt;User &lt;/SPAN&gt;indicators&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Persons:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;NoConcatenate LOAD&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-size: 13.3333px;"&gt;User&lt;/SPAN&gt;,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Count(DISTINCT [Day]) as VisitDays,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Count(DISTINCT [Day])/$(vTotalDaysCount) as Attendance&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Resident Int&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Group by [&lt;SPAN style="font-size: 13.3333px;"&gt;User&lt;/SPAN&gt;];&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So i use &lt;SPAN style="font-size: 13.3333px;"&gt;Attendance value to determine office workers and another staff. (Ex: Attendance &amp;gt; 0.7)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Nov 2018 12:24:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculation-Question/m-p/109053#M751038</guid>
      <dc:creator>Zhandos_Shotan</dc:creator>
      <dc:date>2018-11-06T12:24:38Z</dc:date>
    </item>
    <item>
      <title>Re: Calculation Question</title>
      <link>https://community.qlik.com/t5/QlikView/Calculation-Question/m-p/109054#M751039</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'll take a look at the link you posted and see if that works. The data itself is in the correct date/time order so it shouldn't be too difficult. As for the first three suggestions i'll have to get my SQL books out and remind myself how to do things in there as its been far too long since I've done anything clever with SQL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If anything else springs to mind then please feel free to post back.&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;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Nov 2018 10:20:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculation-Question/m-p/109054#M751039</guid>
      <dc:creator>peterderrington</dc:creator>
      <dc:date>2018-11-08T10:20:06Z</dc:date>
    </item>
    <item>
      <title>Re: Calculation Question</title>
      <link>https://community.qlik.com/t5/QlikView/Calculation-Question/m-p/109055#M751040</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Zhandos,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sorry I didn't receive the notification for this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'll have a look now at what you've suggested and see if I can work it out. I'm presuming I just add this to the bottom of my script (once I've adapted it to have my field labels).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Nov 2018 10:22:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculation-Question/m-p/109055#M751040</guid>
      <dc:creator>peterderrington</dc:creator>
      <dc:date>2018-11-08T10:22:31Z</dc:date>
    </item>
    <item>
      <title>Re: Calculation Question</title>
      <link>https://community.qlik.com/t5/QlikView/Calculation-Question/m-p/109056#M751042</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm obviously having a dim moment but I cant recreate your table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Am I right in thinking there's no dimension and its all done with expressions. I just cant seem to get it to show anything.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry, I've had a couple of long hard days recently and my brain has turned to mush.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Nov 2018 10:43:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculation-Question/m-p/109056#M751042</guid>
      <dc:creator>peterderrington</dc:creator>
      <dc:date>2018-11-08T10:43:17Z</dc:date>
    </item>
    <item>
      <title>Re: Calculation Question</title>
      <link>https://community.qlik.com/t5/QlikView/Calculation-Question/m-p/109057#M751043</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Peter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Attaching the app. I have personal edition, so hopefully you can open, but happy to paste in the expressions if not. Let me know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chris.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Nov 2018 11:16:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculation-Question/m-p/109057#M751043</guid>
      <dc:creator>chrismarlow</dc:creator>
      <dc:date>2018-11-08T11:16:46Z</dc:date>
    </item>
    <item>
      <title>Re: Calculation Question</title>
      <link>https://community.qlik.com/t5/QlikView/Calculation-Question/m-p/109058#M751044</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Fantastic, that's great, I'm starting to replicate them now with the real data and its starting to show things.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'll have a play around and get back to you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Nov 2018 12:06:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculation-Question/m-p/109058#M751044</guid>
      <dc:creator>peterderrington</dc:creator>
      <dc:date>2018-11-08T12:06:43Z</dc:date>
    </item>
  </channel>
</rss>

