<?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 Calculating Maximum Wait Time as HH:MM in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Calculating-Maximum-Wait-Time-as-HH-MM/m-p/1139486#M910170</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Am trying to use a concatenate script to report on the Maximum of 'TotalWait' which is calculated field within EDDATA based on&amp;nbsp; calculation DateDiff(MINUTE,att.ARRIV_DTTM,att.DEPRT_DTTM) [TotalWait] &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following runs without error when I refresh data load, but when using Chart object to create a Pivot table the below value does not appear?? Is it to do with calculation or the data type format?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate (SummaryED)&lt;/P&gt;&lt;P&gt;load&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Campus as Campus,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year as Year,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Qtr as Qtr,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Month as Month,&lt;/P&gt;&lt;P&gt;&amp;nbsp; WeekEnding as Week,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Date as Date,&lt;/P&gt;&lt;P&gt;&amp;nbsp; DOW as DOW,&lt;/P&gt;&lt;P&gt;&amp;nbsp; num ((Max ([TotalWait]))/60, '#,##0')&amp;amp;':'&amp;amp;Mod(Max([TotalWait]),60) as SummVal,&lt;/P&gt;&lt;P&gt;&amp;nbsp; 'Max Total Wait' as SummType&lt;/P&gt;&lt;P&gt;resident EDDATA&lt;/P&gt;&lt;P&gt;group by Campus, Year, Qtr, Month, WeekEnding, Date, DOW&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
    <dc:creator />
    <dc:date>2020-11-25T16:16:04Z</dc:date>
    <item>
      <title>Calculating Maximum Wait Time as HH:MM</title>
      <link>https://community.qlik.com/t5/QlikView/Calculating-Maximum-Wait-Time-as-HH-MM/m-p/1139486#M910170</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Am trying to use a concatenate script to report on the Maximum of 'TotalWait' which is calculated field within EDDATA based on&amp;nbsp; calculation DateDiff(MINUTE,att.ARRIV_DTTM,att.DEPRT_DTTM) [TotalWait] &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following runs without error when I refresh data load, but when using Chart object to create a Pivot table the below value does not appear?? Is it to do with calculation or the data type format?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate (SummaryED)&lt;/P&gt;&lt;P&gt;load&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Campus as Campus,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year as Year,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Qtr as Qtr,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Month as Month,&lt;/P&gt;&lt;P&gt;&amp;nbsp; WeekEnding as Week,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Date as Date,&lt;/P&gt;&lt;P&gt;&amp;nbsp; DOW as DOW,&lt;/P&gt;&lt;P&gt;&amp;nbsp; num ((Max ([TotalWait]))/60, '#,##0')&amp;amp;':'&amp;amp;Mod(Max([TotalWait]),60) as SummVal,&lt;/P&gt;&lt;P&gt;&amp;nbsp; 'Max Total Wait' as SummType&lt;/P&gt;&lt;P&gt;resident EDDATA&lt;/P&gt;&lt;P&gt;group by Campus, Year, Qtr, Month, WeekEnding, Date, DOW&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/Calculating-Maximum-Wait-Time-as-HH-MM/m-p/1139486#M910170</guid>
      <dc:creator />
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating Maximum Wait Time as HH:MM</title>
      <link>https://community.qlik.com/t5/QlikView/Calculating-Maximum-Wait-Time-as-HH-MM/m-p/1139487#M910171</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Claire,&lt;/P&gt;&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate (SummaryED)&lt;/P&gt;&lt;P&gt;load&lt;/P&gt;&lt;P&gt;&amp;nbsp; Campus as Campus,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Year as Year,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Qtr as Qtr,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Month as Month,&lt;/P&gt;&lt;P&gt;&amp;nbsp; WeekEnding as Week,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Date as Date,&lt;/P&gt;&lt;P&gt;&amp;nbsp; DOW as DOW,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Interval(Max([TotalWait]),'hh:mm')&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; as SummVal,&lt;/P&gt;&lt;P&gt;&amp;nbsp; 'Max Total Wait' as SummType&lt;/P&gt;&lt;P&gt;resident EDDATA&lt;/P&gt;&lt;P&gt;group by Campus, Year, Qtr, Month, WeekEnding, Date, DOW&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jun 2016 14:04:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculating-Maximum-Wait-Time-as-HH-MM/m-p/1139487#M910171</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-06-07T14:04:53Z</dc:date>
    </item>
  </channel>
</rss>

