<?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: Networkdays does not include holidays although correct syntax - Which settings affect the functi in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Networkdays-does-not-include-holidays-although-correct-syntax/m-p/1583902#M443107</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;thank you for your reply! I ran your modified code and got&amp;nbsp;&lt;STRONG&gt;52:41:38 &lt;/STRONG&gt;in my example application again. 52:41:38 is my expectation but in my production app, it still displays 62:41:38.&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 23 May 2019 12:59:59 GMT</pubDate>
    <dc:creator>derChristopher</dc:creator>
    <dc:date>2019-05-23T12:59:59Z</dc:date>
    <item>
      <title>Networkdays does not include holidays although correct syntax - Which settings affect the function?</title>
      <link>https://community.qlik.com/t5/QlikView/Networkdays-does-not-include-holidays-although-correct-syntax/m-p/1583714#M443092</link>
      <description>&lt;P&gt;Dear all,&lt;/P&gt;&lt;P&gt;I try to use the networkdays() function in a load script, to evaluate the runtime of tickets (services requests/incidents) according to the working/business hours of my company. Therefore I came up with a solution based on other community posts to calculate the runtime based on a 10hours day excluding weekends.&amp;nbsp; The final step is now to exclude the holidays as well. Consequently I created a variable with the holidays in regular date format (e.g. 43586 -&amp;gt; 01/05/2019 DD/MM/YYYY).&amp;nbsp;&lt;/P&gt;&lt;P&gt;So far, so good. Everything should work and works in a example application but not in production application. I think there is some variable or setting which is in conflict with networkdays(). Is that possible?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Please take a look at my code snippet. As result RuntimeVar returns a runtime of 52:41:38 which is correct. The production application returns 62:41:38 instead, because it&amp;nbsp;neglected the first of may holiday. I have no idea why this happens. The code is the same in both apps. I appreciate any help/suggestions!&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;BR /&gt;Christopher&lt;/P&gt;&lt;P&gt;LET vStartHour = 7;&lt;BR /&gt;LET vEndHour = 17;&lt;BR /&gt;LET vWorkingHourPerDay = $(vEndHour) -$(vStartHour);&lt;/P&gt;&lt;P&gt;SET calc_laufzeit = 'Interval(rangesum(&lt;BR /&gt;NetWorkDays($1+1,$2-1,$(vHolidays)) * MakeTime(10) // 10 hours per workday, for all day inbetween the period, excluding bounderies&lt;BR /&gt;,if(NetWorkDays($2,$2,$(vHolidays)),Rangemin(rangemax(frac($2),maketime(7)),maketime(17))-Rangemax(rangemin(frac($2),maketime(7)),maketime(7)),0) // working hours last day&lt;BR /&gt;,if(NetWorkDays($1,$1,$(vHolidays)),Rangemin(rangemax(frac($1),maketime(17)),maketime(17))-Rangemax(rangemin(frac($1),maketime(17)),maketime(7)),0) // working first day&lt;BR /&gt;,if(NetWorkDays($1,$1,$(vHolidays)) and floor($1)=floor($2),-MakeTime(10)) // correct for first equals last day&lt;BR /&gt;))';&lt;/P&gt;&lt;P&gt;&amp;nbsp;Holidays:&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;Holiday&lt;BR /&gt;43586&lt;BR /&gt;43615&lt;BR /&gt;43626&lt;BR /&gt;43825&lt;BR /&gt;43741&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;Let counter=0;&lt;BR /&gt;FOR Each a in FieldValueList('Holiday') //FEIERTAGE.FEIERTAG&lt;BR /&gt;Let vHolidays=if($(counter)=0,chr(39) &amp;amp; '$(a)' &amp;amp; chr(39),'$(vHolidays)' &amp;amp; ',' &amp;amp; chr(39) &amp;amp; '$(a)' &amp;amp; chr(39));&lt;BR /&gt;Let counter = 1;&lt;BR /&gt;NEXT a;&lt;/P&gt;&lt;P&gt;Data:&lt;BR /&gt;LOAD *,&lt;BR /&gt;if(1,$(calc_laufzeit(START_TIME,END_TIME)),null()) as RuntimeVar;&lt;BR /&gt;LOAD *,&lt;BR /&gt;timestamp(timestamp#(StartTime,'MM/DD/YYYY hh:mm:ss TT')) as START_TIME,&lt;BR /&gt;timestamp(timestamp#(EndTime,'MM/DD/YYYY hh:mm:ss TT')) as END_TIME&lt;BR /&gt;Inline [&lt;BR /&gt;TicketNo,StartTime, EndTime&lt;BR /&gt;1, 4/29/2019 2:12:43 PM, 5/7/2019 4:54:21 PM];&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 20:48:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Networkdays-does-not-include-holidays-although-correct-syntax/m-p/1583714#M443092</guid>
      <dc:creator>derChristopher</dc:creator>
      <dc:date>2024-11-16T20:48:46Z</dc:date>
    </item>
    <item>
      <title>Re: Networkdays does not include holidays although correct syntax - Which settings affect the functi</title>
      <link>https://community.qlik.com/t5/QlikView/Networkdays-does-not-include-holidays-although-correct-syntax/m-p/1583894#M443106</link>
      <description>&lt;P&gt;When I ran this, I also got 62:41:38... I just modified the code a little&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;LET vStartHour = 7;
LET vEndHour = 17;
LET vWorkingHourPerDay = $(vEndHour) - $(vStartHour);

SET calc_laufzeit = 'Interval(rangesum(
NetWorkDays($1+1,$2-1,$(vHolidays)) * MakeTime(10) // 10 hours per workday, for all day inbetween the period, excluding bounderies
,if(NetWorkDays($2,$2,$(vHolidays)),Rangemin(rangemax(frac($2),maketime(7)),maketime(17))-Rangemax(rangemin(frac($2),maketime(7)),maketime(7)),0) // working hours last day
,if(NetWorkDays($1,$1,$(vHolidays)),Rangemin(rangemax(frac($1),maketime(17)),maketime(17))-Rangemax(rangemin(frac($1),maketime(17)),maketime(7)),0) // working first day
,if(NetWorkDays($1,$1,$(vHolidays)) and floor($1)=floor($2),-MakeTime(10)) // correct for first equals last day
))';

Holidays:
LOAD Concat(Chr(39) &amp;amp; Holiday &amp;amp; Chr(39), ',') as Holiday;
LOAD * INLINE [
    Holiday
    43586
    43615
    43626
    43825
    43741
];

LET vHolidays = Peek('Holiday');

Data:
LOAD *,
	 if(1,$(calc_laufzeit(START_TIME,END_TIME)),null()) as RuntimeVar;
LOAD *,
	 timestamp(timestamp#(StartTime,'MM/DD/YYYY hh:mm:ss TT')) as START_TIME,
	 timestamp(timestamp#(EndTime,'MM/DD/YYYY hh:mm:ss TT')) as END_TIME
INLINE [
    TicketNo, StartTime, EndTime
    1, 4/29/2019 2:12:43 PM, 5/7/2019 4:54:21 PM
];&lt;/LI-CODE&gt;&lt;P&gt;Checking to see why this is different than your expectation.&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2019 12:46:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Networkdays-does-not-include-holidays-although-correct-syntax/m-p/1583894#M443106</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2019-05-23T12:46:22Z</dc:date>
    </item>
    <item>
      <title>Re: Networkdays does not include holidays although correct syntax - Which settings affect the functi</title>
      <link>https://community.qlik.com/t5/QlikView/Networkdays-does-not-include-holidays-although-correct-syntax/m-p/1583902#M443107</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;thank you for your reply! I ran your modified code and got&amp;nbsp;&lt;STRONG&gt;52:41:38 &lt;/STRONG&gt;in my example application again. 52:41:38 is my expectation but in my production app, it still displays 62:41:38.&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2019 12:59:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Networkdays-does-not-include-holidays-although-correct-syntax/m-p/1583902#M443107</guid>
      <dc:creator>derChristopher</dc:creator>
      <dc:date>2019-05-23T12:59:59Z</dc:date>
    </item>
    <item>
      <title>Re: Networkdays does not include holidays although correct syntax - Which settings affect the functi</title>
      <link>https://community.qlik.com/t5/QlikView/Networkdays-does-not-include-holidays-although-correct-syntax/m-p/1583903#M443108</link>
      <description>&lt;P&gt;Try this&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;LET vStartHour = 7;
LET vEndHour = 17;
LET vWorkingHourPerDay = $(vEndHour) - $(vStartHour);

Holidays:
LOAD Concat(Chr(39) &amp;amp; Holiday &amp;amp; Chr(39), ',') as Holiday;
LOAD * INLINE [
    Holiday
    43586
    43615
    43626
    43825
    43741
];

LET vHolidays = Peek('Holiday');

TRACE $(vHolidays);

SET calc_laufzeit = 'Interval(rangesum(
NetWorkDays($1+1,$2-1,$(vHolidays)) * MakeTime(10) // 10 hours per workday, for all day inbetween the period, excluding bounderies
,if(NetWorkDays($2,$2,$(vHolidays)),Rangemin(rangemax(frac($2),maketime(7)),maketime(17))-Rangemax(rangemin(frac($2),maketime(7)),maketime(7)),0) // working hours last day
,if(NetWorkDays($1,$1,$(vHolidays)),Rangemin(rangemax(frac($1),maketime(17)),maketime(17))-Rangemax(rangemin(frac($1),maketime(17)),maketime(7)),0) // working first day
,if(NetWorkDays($1,$1,$(vHolidays)) and floor($1)=floor($2),-MakeTime(10)) // correct for first equals last day
))';

Data:
LOAD *,
	 if(1,$(calc_laufzeit(START_TIME,END_TIME)),null()) as RuntimeVar;
LOAD *,
	 timestamp(timestamp#(StartTime,'M/D/YYYY hh:mm:ss TT')) as START_TIME,
	 timestamp(timestamp#(EndTime,'M/D/YYYY hh:mm:ss TT')) as END_TIME
INLINE [
    TicketNo, StartTime, EndTime
    1, 4/29/2019 2:12:43 PM, 5/7/2019 4:54:21 PM
];&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Move&amp;nbsp;SET calc_laufzeit after you create vHolidays and see if this works for you&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2019 13:01:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Networkdays-does-not-include-holidays-although-correct-syntax/m-p/1583903#M443108</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2019-05-23T13:01:43Z</dc:date>
    </item>
    <item>
      <title>Re: Networkdays does not include holidays although correct syntax - Which settings affect the functi</title>
      <link>https://community.qlik.com/t5/QlikView/Networkdays-does-not-include-holidays-although-correct-syntax/m-p/1583904#M443109</link>
      <description>&lt;P&gt;Try the change mentioned below.&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2019 13:02:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Networkdays-does-not-include-holidays-although-correct-syntax/m-p/1583904#M443109</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2019-05-23T13:02:26Z</dc:date>
    </item>
    <item>
      <title>Re: Networkdays does not include holidays although correct syntax - Which settings affect the functi</title>
      <link>https://community.qlik.com/t5/QlikView/Networkdays-does-not-include-holidays-although-correct-syntax/m-p/1583910#M443110</link>
      <description>&lt;P&gt;I have already tried that in both, the example and the production application.&amp;nbsp;&lt;/P&gt;&lt;P&gt;The result of the example application is correct and the production application still displays the incorrect runtime(62h).&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2019 13:08:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Networkdays-does-not-include-holidays-although-correct-syntax/m-p/1583910#M443110</guid>
      <dc:creator>derChristopher</dc:creator>
      <dc:date>2019-05-23T13:08:40Z</dc:date>
    </item>
    <item>
      <title>Re: Networkdays does not include holidays although correct syntax - Which settings affect the functi</title>
      <link>https://community.qlik.com/t5/QlikView/Networkdays-does-not-include-holidays-although-correct-syntax/m-p/1583913#M443111</link>
      <description>&lt;P&gt;Can you check what you get when you use this in a text box object of your production app&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;=Interval(rangesum(
NetWorkDays('4/29/2019 2:12:43 PM'+1,'5/7/2019 4:54:21 PM'-1,$(vHolidays)) * MakeTime(10) // 10 hours per workday, for all day inbetween the period, excluding bounderies
,if(NetWorkDays('5/7/2019 4:54:21 PM','5/7/2019 4:54:21 PM',$(vHolidays)),Rangemin(rangemax(frac('5/7/2019 4:54:21 PM'),maketime(7)),maketime(17))-Rangemax(rangemin(frac('5/7/2019 4:54:21 PM'),maketime(7)),maketime(7)),0) // working hours last day
,if(NetWorkDays('4/29/2019 2:12:43 PM','4/29/2019 2:12:43 PM',$(vHolidays)),Rangemin(rangemax(frac('4/29/2019 2:12:43 PM'),maketime(17)),maketime(17))-Rangemax(rangemin(frac('4/29/2019 2:12:43 PM'),maketime(17)),maketime(7)),0) // working first day
,if(NetWorkDays('4/29/2019 2:12:43 PM','4/29/2019 2:12:43 PM',$(vHolidays)) and floor('4/29/2019 2:12:43 PM')=floor('5/7/2019 4:54:21 PM'),-MakeTime(10)) // correct for first equals last day
))&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 23 May 2019 13:11:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Networkdays-does-not-include-holidays-although-correct-syntax/m-p/1583913#M443111</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2019-05-23T13:11:44Z</dc:date>
    </item>
    <item>
      <title>Re: Networkdays does not include holidays although correct syntax - Which settings affect the functi</title>
      <link>https://community.qlik.com/t5/QlikView/Networkdays-does-not-include-holidays-although-correct-syntax/m-p/1583917#M443112</link>
      <description>&lt;P&gt;Thank you for your reply! Exactly your code snippet returns in a 00:00:00 interval because of the format of the timestamps. But if I modify the timestamps from a String to&amp;nbsp;timestamp#('4/29/2019 2:12:43 PM','M/D/YYYY hh:mm:ss TT'), it displays the correct time of 52h. Therefore I think there has to an issue with the input dates. I will check that.&lt;BR /&gt;&lt;BR /&gt;Modified Example Code:&lt;BR /&gt;=Interval(rangesum(&lt;BR /&gt;NetWorkDays(timestamp#('4/29/2019 2:12:43 PM','M/D/YYYY hh:mm:ss TT')+1,timestamp#('5/7/2019 4:54:21 PM','M/D/YYYY hh:mm:ss TT')-1,$(vHol)) * MakeTime(10) // 10 hours per workday, for all day inbetween the period, excluding bounderies&lt;BR /&gt;,if(NetWorkDays(timestamp#('5/7/2019 4:54:21 PM','M/D/YYYY hh:mm:ss TT'),timestamp#('5/7/2019 4:54:21 PM','M/D/YYYY hh:mm:ss TT'),$(vHol)),Rangemin(rangemax(frac(timestamp#('5/7/2019 4:54:21 PM','M/D/YYYY hh:mm:ss TT')),maketime(7)),maketime(17))-Rangemax(rangemin(frac(timestamp#('5/7/2019 4:54:21 PM','M/D/YYYY hh:mm:ss TT')),maketime(7)),maketime(7)),0) // working hours last day&lt;BR /&gt;,if(NetWorkDays(timestamp#('4/29/2019 2:12:43 PM','M/D/YYYY hh:mm:ss TT'),timestamp#('4/29/2019 2:12:43 PM','M/D/YYYY hh:mm:ss TT'),$(vHol)),Rangemin(rangemax(frac(timestamp#('4/29/2019 2:12:43 PM','M/D/YYYY hh:mm:ss TT')),maketime(17)),maketime(17))-Rangemax(rangemin(frac(timestamp#('4/29/2019 2:12:43 PM','M/D/YYYY hh:mm:ss TT')),maketime(17)),maketime(7)),0) // working first day&lt;BR /&gt;,if(NetWorkDays(timestamp#('4/29/2019 2:12:43 PM','M/D/YYYY hh:mm:ss TT'),timestamp#('4/29/2019 2:12:43 PM','M/D/YYYY hh:mm:ss TT'),$(vHol)) and floor(timestamp#('4/29/2019 2:12:43 PM','M/D/YYYY hh:mm:ss TT'))=floor(timestamp#('5/7/2019 4:54:21 PM','M/D/YYYY hh:mm:ss TT')),-MakeTime(10)) // correct for first equals last day&lt;BR /&gt;))&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2019 13:22:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Networkdays-does-not-include-holidays-although-correct-syntax/m-p/1583917#M443112</guid>
      <dc:creator>derChristopher</dc:creator>
      <dc:date>2019-05-23T13:22:40Z</dc:date>
    </item>
    <item>
      <title>Re: Networkdays does not include holidays although correct syntax - Which settings affect the functi</title>
      <link>https://community.qlik.com/t5/QlikView/Networkdays-does-not-include-holidays-although-correct-syntax/m-p/1583918#M443113</link>
      <description>&lt;P&gt;Is there a difference in environmental variable between sample and prod app? Do they both have this?&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;SET TimestampFormat='M/D/YYYY h:mm:ss[.fff] TT';&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 23 May 2019 13:25:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Networkdays-does-not-include-holidays-although-correct-syntax/m-p/1583918#M443113</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2019-05-23T13:25:10Z</dc:date>
    </item>
    <item>
      <title>Re: Networkdays does not include holidays although correct syntax - Which settings affect the functi</title>
      <link>https://community.qlik.com/t5/QlikView/Networkdays-does-not-include-holidays-although-correct-syntax/m-p/1583931#M443114</link>
      <description>&lt;P&gt;No, the production app keeps the timestamps in&amp;nbsp;TimestampFormat='DD.MM.YYYY hh:mm:ss[.fff]', because timestamps of the input dates match exactly to this. Therefore it shouldn't be a problem or not?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2019 13:34:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Networkdays-does-not-include-holidays-although-correct-syntax/m-p/1583931#M443114</guid>
      <dc:creator>derChristopher</dc:creator>
      <dc:date>2019-05-23T13:34:51Z</dc:date>
    </item>
    <item>
      <title>Re: Networkdays does not include holidays although correct syntax - Which settings affect the functi</title>
      <link>https://community.qlik.com/t5/QlikView/Networkdays-does-not-include-holidays-although-correct-syntax/m-p/1583943#M443116</link>
      <description>&lt;P&gt;I double checked it and found my mistake. The incorrect result was produced due to a wrong timestampformat in a preceeding step. Thank you for troubleshooting! I appreciate it &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2019 13:53:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Networkdays-does-not-include-holidays-although-correct-syntax/m-p/1583943#M443116</guid>
      <dc:creator>derChristopher</dc:creator>
      <dc:date>2019-05-23T13:53:25Z</dc:date>
    </item>
    <item>
      <title>Re: Networkdays does not include holidays although correct syntax - Which settings affect the functi</title>
      <link>https://community.qlik.com/t5/QlikView/Networkdays-does-not-include-holidays-although-correct-syntax/m-p/1583945#M443117</link>
      <description>&lt;P&gt;So dev has one format and production has another? Can you change the one in dev to see if that causes the result to change and become incorrect?&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2019 13:53:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Networkdays-does-not-include-holidays-although-correct-syntax/m-p/1583945#M443117</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2019-05-23T13:53:49Z</dc:date>
    </item>
    <item>
      <title>Re: Networkdays does not include holidays although correct syntax - Which settings affect the functi</title>
      <link>https://community.qlik.com/t5/QlikView/Networkdays-does-not-include-holidays-although-correct-syntax/m-p/1583947#M443118</link>
      <description>&lt;P&gt;"Dev" was just the application example I made up for the community. Everything is fine. Thank you very much!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2019 14:03:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Networkdays-does-not-include-holidays-although-correct-syntax/m-p/1583947#M443118</guid>
      <dc:creator>derChristopher</dc:creator>
      <dc:date>2019-05-23T14:03:10Z</dc:date>
    </item>
    <item>
      <title>Re: Networkdays does not include holidays although correct syntax - Which settings affect the functi</title>
      <link>https://community.qlik.com/t5/QlikView/Networkdays-does-not-include-holidays-although-correct-syntax/m-p/1583953#M443119</link>
      <description>&lt;P&gt;Yes that is what I meant... so everything works now? What did you end up doing to resolve it?&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2019 14:13:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Networkdays-does-not-include-holidays-although-correct-syntax/m-p/1583953#M443119</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2019-05-23T14:13:20Z</dc:date>
    </item>
    <item>
      <title>Re: Networkdays does not include holidays although correct syntax - Which settings affect the functi</title>
      <link>https://community.qlik.com/t5/QlikView/Networkdays-does-not-include-holidays-although-correct-syntax/m-p/1584276#M443138</link>
      <description>&lt;P&gt;Yes everything works now. As I said before. The issue was resolved by the correct formatting of the input timestamp in a preceeding step.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 May 2019 05:53:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Networkdays-does-not-include-holidays-although-correct-syntax/m-p/1584276#M443138</guid>
      <dc:creator>derChristopher</dc:creator>
      <dc:date>2019-05-24T05:53:20Z</dc:date>
    </item>
    <item>
      <title>Re: Networkdays does not include holidays although correct syntax - Which settings affect the functi</title>
      <link>https://community.qlik.com/t5/QlikView/Networkdays-does-not-include-holidays-although-correct-syntax/m-p/2464397#M1225842</link>
      <description>&lt;P&gt;Hi! If I want my endhour to be 20:30 pm,how do I write this variable? It calculate correctly of I write 20 as 20:00 pm but for 20:30 I wrote 20.5 and it doesnt work well.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jun 2024 22:29:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Networkdays-does-not-include-holidays-although-correct-syntax/m-p/2464397#M1225842</guid>
      <dc:creator>hadari</dc:creator>
      <dc:date>2024-06-20T22:29:43Z</dc:date>
    </item>
  </channel>
</rss>

