<?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: Operational Working Hours Calculation in Qlik in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Operational-Working-Hours-Calculation-in-Qlik/m-p/2510675#M104933</link>
    <description>&lt;P&gt;Hi Vegar,&lt;/P&gt;&lt;P&gt;Appreciate your response.&lt;/P&gt;&lt;P&gt;For this case:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Operational hours are from &lt;STRONG&gt;10:00 AM to 2:00 AM (next day)&lt;/STRONG&gt;.&lt;/LI&gt;&lt;LI&gt;The ticket was created on &lt;STRONG&gt;13/05/2024 at 8:00 AM&lt;/STRONG&gt;, but operations start at &lt;STRONG&gt;10:00 AM&lt;/STRONG&gt;.&lt;/LI&gt;&lt;LI&gt;The ticket was closed on &lt;STRONG&gt;15/05/2024 at 4:00 AM&lt;/STRONG&gt;, but since operations end at &lt;STRONG&gt;2:00 AM&lt;/STRONG&gt;, we only consider up to that time.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Breakdown:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;13th May:&lt;/STRONG&gt; Operational hours = &lt;STRONG&gt;10:00 AM to 2:00 AM&lt;/STRONG&gt; (16 hours)&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;14th May:&lt;/STRONG&gt; Operational hours = &lt;STRONG&gt;10:00 AM to 2:00 AM&lt;/STRONG&gt; (16 hours)&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Even though the ticket was closed at &lt;STRONG&gt;4:00 AM on the 15th&lt;/STRONG&gt;, operations had already stopped at &lt;STRONG&gt;2:00 AM&lt;/STRONG&gt;, so only the &lt;STRONG&gt;first two days' operational hours (16 + 16 = 32 hours) should be considered&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;Let me know if you need further clarification.&lt;/P&gt;&lt;P&gt;Thanks,&lt;BR /&gt;Poojashri&lt;/P&gt;</description>
    <pubDate>Thu, 20 Mar 2025 11:12:25 GMT</pubDate>
    <dc:creator>poojashribanger</dc:creator>
    <dc:date>2025-03-20T11:12:25Z</dc:date>
    <item>
      <title>Operational Working Hours Calculation in Qlik</title>
      <link>https://community.qlik.com/t5/App-Development/Operational-Working-Hours-Calculation-in-Qlik/m-p/2510476#M104899</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I have a scenario where i need to calculate the operational hours between ticket created and resolved but considering only the operational hours.&lt;/P&gt;&lt;P&gt;i.e&lt;/P&gt;&lt;P&gt;.&lt;SPAN&gt;operation start= 10:00 Am&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;operation end =2:00 am next day mid night&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;For some case the values are not calculating correctly&lt;/P&gt;&lt;P&gt;Let vStartTime = Num(MakeTime(10, 0, 0));&lt;BR /&gt;Let vEndTime = Num(MakeTime(2, 0, 0)) +1; // +1 for midnight the next day / 24:00&lt;BR /&gt;// Let vEndTime = Floor(Num(MakeTime(0, 0, 0))) + 1 + (6 / 24);&lt;/P&gt;&lt;P&gt;Data:&lt;BR /&gt;NoConcatenate Load&lt;BR /&gt;TicketId,&lt;BR /&gt;Reported,&lt;BR /&gt;Resolved,&lt;BR /&gt;Daysqlik,&lt;BR /&gt;// rangesum(if(networkdays(Reported,Resolved),&lt;BR /&gt;// round(rangesum(if(frac(Reported)&amp;gt;maketime($(vstarthours)),maketime($(vstarthours))-frac(Reported),0),&lt;BR /&gt;// if(frac(Resolved)&amp;gt;maketime($(Vendhours)),frac(Resolved)-maketime($(Vendhours)),0)) as time;&lt;BR /&gt;interval(RangeSum(Days,TimeAfterReported,TimeToResolved), 'hh:mm:ss') as Code_C;&lt;BR /&gt;&lt;BR /&gt;Load&lt;BR /&gt;*,&lt;BR /&gt;If(ReportedTime &amp;gt;= $(vEndTime), 0, $(vEndTime) - RangeMax(ReportedTime, $(vStartTime))) as TimeAfterReported,&lt;BR /&gt;If(ResolvedTime &amp;lt;= $(vStartTime), 0, RangeMin(ResolvedTime, $(vEndTime)) - $(vStartTime)) as TimeToResolved;&lt;/P&gt;&lt;P&gt;Load&lt;BR /&gt;*,&lt;BR /&gt;(floor(Resolved) - ceil(Reported)) * ($(vEndTime) - $(vStartTime)) as Days,&lt;BR /&gt;interval(Resolved-Reported, 'D') as Daysqlik,&lt;BR /&gt;num(Reported) - Floor(Reported) as ReportedTime,&lt;BR /&gt;num(Resolved) - Floor(Resolved) as ResolvedTime;&lt;/P&gt;&lt;P&gt;Load&lt;BR /&gt;RecNo() as TicketId,&lt;BR /&gt;Timestamp#(Reported, 'DD/MM/YYYY hh:mm:ss') as Reported,&lt;BR /&gt;Timestamp#(Resolved, 'DD/MM/YYYY hh:mm:ss') as Resolved;&lt;/P&gt;&lt;P&gt;load * Inline [&lt;BR /&gt;Reported, Resolved&lt;BR /&gt;'17/06/2024 11:10:00', '18/06/2024 2:00:00'&lt;BR /&gt;'13/05/2024 8:00:00', '15/05/2024 4:00:00'&lt;BR /&gt;'26/02/2024 10:25:00', '27/02/2024 1:05:00'&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;exit script;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Expected Output :&lt;/P&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;I have attached the file.&lt;/P&gt;&lt;P&gt;Kindly help me on this&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;BR /&gt;Poojashri&lt;/P&gt;</description>
      <pubDate>Tue, 18 Mar 2025 12:15:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Operational-Working-Hours-Calculation-in-Qlik/m-p/2510476#M104899</guid>
      <dc:creator>poojashribanger</dc:creator>
      <dc:date>2025-03-18T12:15:12Z</dc:date>
    </item>
    <item>
      <title>Re: Operational Working Hours Calculation in Qlik</title>
      <link>https://community.qlik.com/t5/App-Development/Operational-Working-Hours-Calculation-in-Qlik/m-p/2510595#M104925</link>
      <description>&lt;P&gt;I think you could do the calculations by using the timestamps directly as shown below.&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Load&amp;nbsp;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Interval(Resolved-Reported) as TimeToResolved ;&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;RecNo() as TicketId,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Timestamp#(Reported, 'DD/MM/YYYY hh:mm:ss') as Reported,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Timestamp#(Resolved, 'DD/MM/YYYY hh:mm:ss') as Resolved;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;load * Inline [&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Reported, Resolved&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;'17/06/2024 11:10:00', '18/06/2024 2:00:00'&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;'13/05/2024 8:00:00', '15/05/2024 4:00:00'&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;'26/02/2024 10:25:00', '27/02/2024 1:05:00'&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;];&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Mar 2025 05:33:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Operational-Working-Hours-Calculation-in-Qlik/m-p/2510595#M104925</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2025-03-19T05:33:09Z</dc:date>
    </item>
    <item>
      <title>Re: Operational Working Hours Calculation in Qlik</title>
      <link>https://community.qlik.com/t5/App-Development/Operational-Working-Hours-Calculation-in-Qlik/m-p/2510597#M104926</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This will give me total hours between&amp;nbsp; 2dates but i need only the operational hours between 2 dates&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Poojashri&lt;/P&gt;</description>
      <pubDate>Wed, 19 Mar 2025 05:43:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Operational-Working-Hours-Calculation-in-Qlik/m-p/2510597#M104926</guid>
      <dc:creator>poojashribanger</dc:creator>
      <dc:date>2025-03-19T05:43:34Z</dc:date>
    </item>
    <item>
      <title>Re: Operational Working Hours Calculation in Qlik</title>
      <link>https://community.qlik.com/t5/App-Development/Operational-Working-Hours-Calculation-in-Qlik/m-p/2510666#M104931</link>
      <description>&lt;P&gt;I am not sure if I understand. There is some detail I am missing in your explanation.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I had a look at your attached image. I get as you did, the correct value with my suggested solution on 2 out of 3, but we differ in which ones that are wrong. See image below.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Vegar_0-1742389288819.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/178775i07955AE6A309BA23/image-size/large?v=v2&amp;amp;px=999" role="button" title="Vegar_0-1742389288819.png" alt="Vegar_0-1742389288819.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Can you explain why TicketId 2 should have a Time to Resolved to 32h and not 44h as I get in my calculation?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Mar 2025 13:04:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Operational-Working-Hours-Calculation-in-Qlik/m-p/2510666#M104931</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2025-03-19T13:04:12Z</dc:date>
    </item>
    <item>
      <title>Re: Operational Working Hours Calculation in Qlik</title>
      <link>https://community.qlik.com/t5/App-Development/Operational-Working-Hours-Calculation-in-Qlik/m-p/2510675#M104933</link>
      <description>&lt;P&gt;Hi Vegar,&lt;/P&gt;&lt;P&gt;Appreciate your response.&lt;/P&gt;&lt;P&gt;For this case:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Operational hours are from &lt;STRONG&gt;10:00 AM to 2:00 AM (next day)&lt;/STRONG&gt;.&lt;/LI&gt;&lt;LI&gt;The ticket was created on &lt;STRONG&gt;13/05/2024 at 8:00 AM&lt;/STRONG&gt;, but operations start at &lt;STRONG&gt;10:00 AM&lt;/STRONG&gt;.&lt;/LI&gt;&lt;LI&gt;The ticket was closed on &lt;STRONG&gt;15/05/2024 at 4:00 AM&lt;/STRONG&gt;, but since operations end at &lt;STRONG&gt;2:00 AM&lt;/STRONG&gt;, we only consider up to that time.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Breakdown:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;13th May:&lt;/STRONG&gt; Operational hours = &lt;STRONG&gt;10:00 AM to 2:00 AM&lt;/STRONG&gt; (16 hours)&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;14th May:&lt;/STRONG&gt; Operational hours = &lt;STRONG&gt;10:00 AM to 2:00 AM&lt;/STRONG&gt; (16 hours)&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Even though the ticket was closed at &lt;STRONG&gt;4:00 AM on the 15th&lt;/STRONG&gt;, operations had already stopped at &lt;STRONG&gt;2:00 AM&lt;/STRONG&gt;, so only the &lt;STRONG&gt;first two days' operational hours (16 + 16 = 32 hours) should be considered&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;Let me know if you need further clarification.&lt;/P&gt;&lt;P&gt;Thanks,&lt;BR /&gt;Poojashri&lt;/P&gt;</description>
      <pubDate>Thu, 20 Mar 2025 11:12:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Operational-Working-Hours-Calculation-in-Qlik/m-p/2510675#M104933</guid>
      <dc:creator>poojashribanger</dc:creator>
      <dc:date>2025-03-20T11:12:25Z</dc:date>
    </item>
    <item>
      <title>Re: Operational Working Hours Calculation in Qlik</title>
      <link>https://community.qlik.com/t5/App-Development/Operational-Working-Hours-Calculation-in-Qlik/m-p/2510900#M104977</link>
      <description>&lt;P&gt;Interesting problem. I did some thinking and came up with this solution.Hopefully it will solve your need. At least it gets your examples correct.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Vegar_0-1742510536670.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/178829i77E83D310AA16696/image-size/large?v=v2&amp;amp;px=999" role="button" title="Vegar_0-1742510536670.png" alt="Vegar_0-1742510536670.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;tickets:&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;Load&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; RecNo() as TicketId,&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; Timestamp#(Reported, 'DD/MM/YYYY hh:mm:ss') as Reported,&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; Timestamp#(Resolved, 'DD/MM/YYYY hh:mm:ss') as Resolved,&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; interval#(ExpectedTimeToResolved,'hh:mm') as [ExpectedTimeToResolved (hh:mm)]&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;load *&amp;nbsp;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;Inline [&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; Reported, Resolved, ExpectedTimeToResolved,&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; '17/06/2024 11:10:00', '18/06/2024 2:00:00', 14:50&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; '13/05/2024 8:00:00', '15/05/2024 4:00:00',32:00&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; '26/02/2024 10:25:00', '27/02/2024 1:05:00',14:40&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; ];&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;let start = '26/02/2024';&amp;nbsp; //The Min Reported date&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;let end = '18/06/2024';&amp;nbsp; &amp;nbsp; //The Max Resolved date&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;datehours:&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;LOAD&amp;nbsp;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;timestamp( '$(start)'+IterNo()-1 + maketime(recno()-1), 'DD/MM/YYYY hh:mm')&amp;nbsp; as date_hour&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;AutoGenerate 24&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;while&amp;nbsp;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;'$(start)'+IterNo()-1&amp;lt;= '$(end)'&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;and match((recno()-1), 10,11,12,13,14,15,16,17,18,19,20,21,22,23,0,1) //list the operation operating hours&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;IntervalMatch (date_hour)&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;left JOIN (tickets) LOAD Reported, Resolved Resident tickets;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;drop table datehours;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;load&amp;nbsp;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; TicketId,&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; only(Reported) as Reported,&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; only(Resolved) as Resolved,&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; interval(&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; (&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; interval#(count(TicketId), 'h')&amp;nbsp;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; +interval#( mod(60-minute(only(Reported)),60), 'm')&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; -interval#( mod(60-minute(only(Resolved)),60), 'm')&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; ),&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; 'hh:mm') as [Operational Working Hours]&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;Resident&amp;nbsp;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;tickets&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;Group by TicketId;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="courier new,courier"&gt;drop table tickets&lt;/FONT&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 20 Mar 2025 22:43:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Operational-Working-Hours-Calculation-in-Qlik/m-p/2510900#M104977</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2025-03-20T22:43:02Z</dc:date>
    </item>
    <item>
      <title>Re: Operational Working Hours Calculation in Qlik</title>
      <link>https://community.qlik.com/t5/App-Development/Operational-Working-Hours-Calculation-in-Qlik/m-p/2511402#M105045</link>
      <description>&lt;P&gt;Hi Vegar,&lt;/P&gt;&lt;P&gt;I gave your approach a try, but unfortunately, it doesn’t seem to be working on my end.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="poojashribanger_0-1742884414588.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/178940i459A17A7BF8EE2FF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="poojashribanger_0-1742884414588.png" alt="poojashribanger_0-1742884414588.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt;Poojashri&lt;/P&gt;</description>
      <pubDate>Tue, 25 Mar 2025 06:34:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Operational-Working-Hours-Calculation-in-Qlik/m-p/2511402#M105045</guid>
      <dc:creator>poojashribanger</dc:creator>
      <dc:date>2025-03-25T06:34:49Z</dc:date>
    </item>
  </channel>
</rss>

