<?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: Script Help: Calculated field from 6 timestamps? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Script-Help-Calculated-field-from-6-timestamps/m-p/855527#M299866</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think swuehl's answer is correct and you are viewing the data incorrectly. You can't line up a set of listboxes and assume row relationships between them. Look at your data in a tablebox as suggested and see if you get the correct result. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 09 Jun 2015 23:55:51 GMT</pubDate>
    <dc:creator>rwunderlich</dc:creator>
    <dc:date>2015-06-09T23:55:51Z</dc:date>
    <item>
      <title>Script Help: Calculated field from 6 timestamps?</title>
      <link>https://community.qlik.com/t5/QlikView/Script-Help-Calculated-field-from-6-timestamps/m-p/855518#M299857</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have 6 timestamp fields in the format of MM/DD/YYYY hh:mm named A, B, C, D, E, F associated with each record/row of a table and would like to create a new field “Order” that sorts these 6 time stamps&amp;nbsp; in order of sequence from earliest timestamp to latest.&amp;nbsp; For example, if they all occur in time sequence equivalent to alphabetical order the newly created field would be “ABCDEF”.&amp;nbsp; If however “C” had an earlier timestamp than “B” the created field would be “ACBDEF”.&amp;nbsp; Can you please assist and/or suggest a Qlik user group forum that I can post this question for feedback and/or assistance?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2015 10:40:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-Help-Calculated-field-from-6-timestamps/m-p/855518#M299857</guid>
      <dc:creator>richardouellett</dc:creator>
      <dc:date>2015-06-09T10:40:11Z</dc:date>
    </item>
    <item>
      <title>Re: Script Help: Calculated field from 6 timestamps?</title>
      <link>https://community.qlik.com/t5/QlikView/Script-Help-Calculated-field-from-6-timestamps/m-p/855519#M299858</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="sql" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14338638065619171" jivemacro_uid="_14338638065619171"&gt;
&lt;P&gt;DATA:&lt;/P&gt;
&lt;P&gt;LOAD&lt;/P&gt;
&lt;P&gt;&amp;nbsp; recno() as ID,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Timestamp(today() + RAND()) as A,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Timestamp(today() + RAND()) as B,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Timestamp(today() + RAND()) as C,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Timestamp(today() + RAND()) as D,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Timestamp(today() + RAND()) as E,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Timestamp(today() + RAND()) as F&lt;/P&gt;
&lt;P&gt;AutoGenerate 10;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;X:&lt;/P&gt;
&lt;P&gt;CrossTable (Field, Time) LOAD * RESIDENT DATA;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;LEFT JOIN (DATA)&lt;/P&gt;
&lt;P&gt;LOAD&lt;/P&gt;
&lt;P&gt;&amp;nbsp; ID,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Concat(Field, '-',Time) as Order&lt;/P&gt;
&lt;P&gt;Resident X&lt;/P&gt;
&lt;P&gt;Group BY ID;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;drop table X;&lt;/P&gt;
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2015 15:30:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-Help-Calculated-field-from-6-timestamps/m-p/855519#M299858</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2015-06-09T15:30:10Z</dc:date>
    </item>
    <item>
      <title>Re: Script Help: Calculated field from 6 timestamps?</title>
      <link>https://community.qlik.com/t5/QlikView/Script-Help-Calculated-field-from-6-timestamps/m-p/855520#M299859</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Swuehl&lt;/P&gt;&lt;P&gt;Thank you for the quick response.&amp;nbsp; A – F needs to be ranked from earliest date-stamp to latest timestamp as a&amp;nbsp; requirement.&amp;nbsp; As I indicated in the original post… For example, if they all occur in time sequence equivalent to alphabetical order the newly created field would be “ABCDEF”.&amp;nbsp; If however “C” had an earlier timestamp than “B” the created field would be “ACBDEF”.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;Best&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM style="font-size: 10.0pt;"&gt;Rick&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2015 18:06:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-Help-Calculated-field-from-6-timestamps/m-p/855520#M299859</guid>
      <dc:creator>richardouellett</dc:creator>
      <dc:date>2015-06-09T18:06:43Z</dc:date>
    </item>
    <item>
      <title>Re: Script Help: Calculated field from 6 timestamps?</title>
      <link>https://community.qlik.com/t5/QlikView/Script-Help-Calculated-field-from-6-timestamps/m-p/855521#M299860</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So what's wrong with my Order field, running the script above?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2015 18:12:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-Help-Calculated-field-from-6-timestamps/m-p/855521#M299860</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2015-06-09T18:12:10Z</dc:date>
    </item>
    <item>
      <title>Re: Script Help: Calculated field from 6 timestamps?</title>
      <link>https://community.qlik.com/t5/QlikView/Script-Help-Calculated-field-from-6-timestamps/m-p/855522#M299861</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you checked the output from &lt;A _jive_internal="true" href="https://community.qlik.com/people/swuehl"&gt;swuehl&lt;/A&gt;‌ script? It is exactly doing what you asked for I believe:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/88849_Capture.PNG" style="height: 162px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2015 18:12:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-Help-Calculated-field-from-6-timestamps/m-p/855522#M299861</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-06-09T18:12:43Z</dc:date>
    </item>
    <item>
      <title>Re: Script Help: Calculated field from 6 timestamps?</title>
      <link>https://community.qlik.com/t5/QlikView/Script-Help-Calculated-field-from-6-timestamps/m-p/855523#M299862</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You are amazing man... Kudos to your knowledge of QlikView&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2015 18:14:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-Help-Calculated-field-from-6-timestamps/m-p/855523#M299862</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-06-09T18:14:02Z</dc:date>
    </item>
    <item>
      <title>Re: Script Help: Calculated field from 6 timestamps?</title>
      <link>https://community.qlik.com/t5/QlikView/Script-Help-Calculated-field-from-6-timestamps/m-p/855524#M299863</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Swuehl&lt;/P&gt;&lt;P&gt;Yes I ran the script with results below.&amp;nbsp; The time stamps need to be ordered in sequence. so there is a step missing.&amp;nbsp; For example the 1st row should be ABECFD and not ACEDFB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jive-image image-1" height="131" src="https://community.qlik.com/legacyfs/online/88850_pastedImage_0.png" style="width: 804.158px; height: 131px;" width="804" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2015 18:23:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-Help-Calculated-field-from-6-timestamps/m-p/855524#M299863</guid>
      <dc:creator>richardouellett</dc:creator>
      <dc:date>2015-06-09T18:23:25Z</dc:date>
    </item>
    <item>
      <title>Re: Script Help: Calculated field from 6 timestamps?</title>
      <link>https://community.qlik.com/t5/QlikView/Script-Help-Calculated-field-from-6-timestamps/m-p/855525#M299864</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use a table box or sort all list boxes by load order or ID. You are not looking at values related to the same record.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2015 18:33:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-Help-Calculated-field-from-6-timestamps/m-p/855525#M299864</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2015-06-09T18:33:46Z</dc:date>
    </item>
    <item>
      <title>Re: Script Help: Calculated field from 6 timestamps?</title>
      <link>https://community.qlik.com/t5/QlikView/Script-Help-Calculated-field-from-6-timestamps/m-p/855526#M299865</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The "Ordered" field needs to be created within the script for each record.&amp;nbsp; Each record contains 6 timestamps.&amp;nbsp; The sequence of the 6 timestamps need to be sorted from earliest to latest time stamp and used to create the "Ordered" field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2015 23:47:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-Help-Calculated-field-from-6-timestamps/m-p/855526#M299865</guid>
      <dc:creator>richardouellett</dc:creator>
      <dc:date>2015-06-09T23:47:28Z</dc:date>
    </item>
    <item>
      <title>Re: Script Help: Calculated field from 6 timestamps?</title>
      <link>https://community.qlik.com/t5/QlikView/Script-Help-Calculated-field-from-6-timestamps/m-p/855527#M299866</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think swuehl's answer is correct and you are viewing the data incorrectly. You can't line up a set of listboxes and assume row relationships between them. Look at your data in a tablebox as suggested and see if you get the correct result. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2015 23:55:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-Help-Calculated-field-from-6-timestamps/m-p/855527#M299866</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2015-06-09T23:55:51Z</dc:date>
    </item>
    <item>
      <title>Re: Script Help: Calculated field from 6 timestamps?</title>
      <link>https://community.qlik.com/t5/QlikView/Script-Help-Calculated-field-from-6-timestamps/m-p/855528#M299867</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rob thank you for the nudge and I apologize swuehl for not putting the results in the table box originally when viewing the results; the newly created order field is ordered correctly and I have the results I originally sought.&amp;nbsp; I must admit that I am not sure how or where the ordering occurred and suspect the magic takes place in the &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;CrossTable&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt; (&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: maroon;"&gt;Field&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: maroon;"&gt;Time&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;) &lt;/SPAN&gt;&lt;STRONG style="color: blue; font-size: 9.0pt; font-family: 'Courier New';"&gt;LOAD&lt;/STRONG&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt; * &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;RESIDENT&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt; DATA;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Line of code.&amp;nbsp; I believe that “Field” takes into account the actual fields A,B,C,D,E,F in the table Data and orders/ranks them with the above line to create the “Ordered” field.&amp;nbsp; Can you confirm if this is how this works?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now that I have the “Ordered” field created, I am uncertain how to incorporate this into my existing script where the existing “data” table has an additional 35 fields of information besides the 6 time-stamp fields.&amp;nbsp; Additionally it would also be good to delete/eliminate the fields A,B,C,D,E,F since they are only needed temporarily to create the “Ordered” field. Can you offer some suggestions? Many thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2015 11:15:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-Help-Calculated-field-from-6-timestamps/m-p/855528#M299867</guid>
      <dc:creator>richardouellett</dc:creator>
      <dc:date>2015-06-10T11:15:10Z</dc:date>
    </item>
    <item>
      <title>Re: Script Help: Calculated field from 6 timestamps?</title>
      <link>https://community.qlik.com/t5/QlikView/Script-Help-Calculated-field-from-6-timestamps/m-p/855529#M299868</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;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;I am not sure how or where the ordering occurred and suspect the magic takes:&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;LEFT JOIN (DATA)&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp; ID,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;STRONG&gt;Concat(Field, '-',Time) as Order&lt;/STRONG&gt;&amp;nbsp; // This part calculate order. Field (A,B, C, D,etc) is concatenate based on "Time"&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from earliest to latest .&lt;/P&gt;&lt;P&gt;Resident X&lt;/P&gt;&lt;P&gt;Group BY ID;&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; I am uncertain how to incorporate this into my existing script where the existing “data” table has an additional 35 fields of information besides the 6 time-stamp fields.&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;&amp;nbsp;&amp;nbsp;&amp;nbsp; You can takes only Unique field (Primary Key Field) along with six timestamp using resident table. And join the orders with your original table based on Primary Key;&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;&lt;STRONG style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Additionally it would also be good to delete/eliminate the fields A,B,C,D,E,F since they are only needed temporarily to create the “Ordered” field. Can you offer some suggestions?&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; You can drop the fields from original table. Like &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;Drop fields x,y from TableName;&lt;/STRONG&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;&amp;nbsp; &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;Any suggestion &lt;A href="https://community.qlik.com/qlik-users/15823"&gt;swuehl&lt;/A&gt;‌ and &lt;A href="https://community.qlik.com/qlik-users/2286"&gt;rwunderlich&lt;/A&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;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2015 12:34:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-Help-Calculated-field-from-6-timestamps/m-p/855529#M299868</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2015-06-10T12:34:41Z</dc:date>
    </item>
    <item>
      <title>Re: Script Help: Calculated field from 6 timestamps?</title>
      <link>https://community.qlik.com/t5/QlikView/Script-Help-Calculated-field-from-6-timestamps/m-p/855530#M299869</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks so much Mayil, very helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2015 12:52:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-Help-Calculated-field-from-6-timestamps/m-p/855530#M299869</guid>
      <dc:creator>richardouellett</dc:creator>
      <dc:date>2015-06-10T12:52:45Z</dc:date>
    </item>
  </channel>
</rss>

