<?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: QLIKview networkdays ignore weekend in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/QLIKview-networkdays-ignore-weekend/m-p/85517#M761957</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thx Sibin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 31 Jul 2018 07:47:27 GMT</pubDate>
    <dc:creator>mohdhaniff</dc:creator>
    <dc:date>2018-07-31T07:47:27Z</dc:date>
    <item>
      <title>QLIKview networkdays ignore weekend</title>
      <link>https://community.qlik.com/t5/QlikView/QLIKview-networkdays-ignore-weekend/m-p/85509#M761949</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;How can I create networkdays by ignore weekend as holidays? All holidays (weekend and Public Holiday) will be identified manually.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px; text-decoration: underline;"&gt;Sample Load Script:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;set Holiday= '01/05/2018','22/05/2018','24/05/5018','19/5/2018';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Period:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;NoConcatenate&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;load distinct * Inline [&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;start, end&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;01/05/2018, 28/05/2018&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;];&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Data:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;NoConcatenate&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD Distinct *,NetWorkDays(start, end,$(Holiday)) as networkday Resident Period;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DROP Tables Period;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;Result&lt;/STRONG&gt;&lt;/SPAN&gt;:&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;From the above script, networkday is showing 18 instead of 24 (28days - 4 holidays)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Can anybody help me how to get the result for networkdays = 24?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="hanif.JPG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/209324_hanif.JPG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&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/QLIKview-networkdays-ignore-weekend/m-p/85509#M761949</guid>
      <dc:creator>mohdhaniff</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: QLIKview networkdays ignore weekend</title>
      <link>https://community.qlik.com/t5/QlikView/QLIKview-networkdays-ignore-weekend/m-p/85510#M761950</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Haniff,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The networkdays function returns the number of working days (Monday-Friday).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the Interval function, it will shows the days between 2 dates.&lt;/P&gt;&lt;P&gt;Interval(end - start, 'D') &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then minus&amp;nbsp; the holidays&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Interval(end - start, 'D') - &lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;$(Holiday)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Thanks,&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Sibin&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Jul 2018 03:42:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QLIKview-networkdays-ignore-weekend/m-p/85510#M761950</guid>
      <dc:creator>sibin_jacob</dc:creator>
      <dc:date>2018-07-31T03:42:28Z</dc:date>
    </item>
    <item>
      <title>Re: QLIKview networkdays ignore weekend</title>
      <link>https://community.qlik.com/t5/QlikView/QLIKview-networkdays-ignore-weekend/m-p/85511#M761951</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thx Sibin for your reply. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I already used your suggested formula but the result return as below. May be you have other solution for me to get networkday result as 24.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="hanif.JPG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/209326_hanif.JPG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Jul 2018 03:59:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QLIKview-networkdays-ignore-weekend/m-p/85511#M761951</guid>
      <dc:creator>mohdhaniff</dc:creator>
      <dc:date>2018-07-31T03:59:06Z</dc:date>
    </item>
    <item>
      <title>Re: QLIKview networkdays ignore weekend</title>
      <link>https://community.qlik.com/t5/QlikView/QLIKview-networkdays-ignore-weekend/m-p/85512#M761952</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please use the below script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set Holiday= '01/05/2018','22/05/2018','24/05/5018','19/5/2018';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let Holiday_Count =if(len(Holiday)=0,0,&lt;/P&gt;&lt;P&gt;if(SubStringCount(Holiday,',')=0,1,&lt;/P&gt;&lt;P&gt;SubStringCount(Holiday,',')+1&lt;/P&gt;&lt;P&gt;));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Period:&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;load distinct * Inline [&lt;/P&gt;&lt;P&gt;start, end&lt;/P&gt;&lt;P&gt;01/05/2018, 28/05/2018&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Period_New:&lt;/P&gt;&lt;P&gt;Load *,Interval(end - start, 'D')+1 -$(Holiday_Count) as test resident Period;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;drop table Period;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Jul 2018 04:18:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QLIKview-networkdays-ignore-weekend/m-p/85512#M761952</guid>
      <dc:creator>sibin_jacob</dc:creator>
      <dc:date>2018-07-31T04:18:02Z</dc:date>
    </item>
    <item>
      <title>Re: QLIKview networkdays ignore weekend</title>
      <link>https://community.qlik.com/t5/QlikView/QLIKview-networkdays-ignore-weekend/m-p/85513#M761953</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thx for the good trick Sibin. It very useful for my other project. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually for the purpose of discussion, I got a different date range for Start and end periods. Is there any solution for below script?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;set Holiday= '01/05/2018','22/05/2018','24/05/5018','19/5/2018';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Period:&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;NoConcatenate&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;load distinct * Inline [&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;ID, start, end&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;A1123, 01/05/2018, 28/05/2018&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;A1145, 08/05/2018, 20/05/2018&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;B3266, 19/05/2018, 23/05/2018&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;];&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Data:&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;NoConcatenate&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;LOAD Distinct *,NetWorkDays(start, end,$(Holiday)) as networkday Resident Period;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;DROP Tables Period;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Jul 2018 04:26:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QLIKview-networkdays-ignore-weekend/m-p/85513#M761953</guid>
      <dc:creator>mohdhaniff</dc:creator>
      <dc:date>2018-07-31T04:26:30Z</dc:date>
    </item>
    <item>
      <title>Re: QLIKview networkdays ignore weekend</title>
      <link>https://community.qlik.com/t5/QlikView/QLIKview-networkdays-ignore-weekend/m-p/85514#M761954</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please try this one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set Holiday= "'01/05/2018','22/05/2018','24/05/2018','19/5/2018'";&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Period:&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;load distinct * Inline [&lt;/P&gt;&lt;P&gt;ID, start, end&lt;/P&gt;&lt;P&gt;A1123, 01/05/2018, 28/05/2018&lt;/P&gt;&lt;P&gt;A1145, 08/05/2018, 20/05/2018&lt;/P&gt;&lt;P&gt;B3266, 19/05/2018, 23/05/2018&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Join (Period)&lt;/P&gt;&lt;P&gt;Load * inline [&lt;/P&gt;&lt;P&gt;Holiday&lt;/P&gt;&lt;P&gt;'01/05/2018'&lt;/P&gt;&lt;P&gt;'22/05/2018'&lt;/P&gt;&lt;P&gt;'24/05/2018'&lt;/P&gt;&lt;P&gt;'19/5/2018'&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Period1: &lt;/P&gt;&lt;P&gt;Load *, if (Holiday &amp;gt;=start and Holiday&amp;lt;=end ,1 , 0) as Holiday_Count&lt;/P&gt;&lt;P&gt;resident Period;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;drop table Period;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Period12:&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;Load ID, start, end,sum(Holiday_Count) as Holiday_Count&lt;/P&gt;&lt;P&gt;resident Period1&lt;/P&gt;&lt;P&gt;group by ID, start, end;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;drop table Period1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Period_New:&lt;/P&gt;&lt;P&gt;Load *,Interval(end - start, 'D')+1 - Holiday_Count as WorkingDays resident Period12;&lt;/P&gt;&lt;P&gt;drop table Period12;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Jul 2018 05:19:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QLIKview-networkdays-ignore-weekend/m-p/85514#M761954</guid>
      <dc:creator>sibin_jacob</dc:creator>
      <dc:date>2018-07-31T05:19:28Z</dc:date>
    </item>
    <item>
      <title>Re: QLIKview networkdays ignore weekend</title>
      <link>https://community.qlik.com/t5/QlikView/QLIKview-networkdays-ignore-weekend/m-p/85515#M761955</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;Refer this&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-5314"&gt;Find Net Working Days&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Pooja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Jul 2018 05:50:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QLIKview-networkdays-ignore-weekend/m-p/85515#M761955</guid>
      <dc:creator>pooja_prabhu_n</dc:creator>
      <dc:date>2018-07-31T05:50:04Z</dc:date>
    </item>
    <item>
      <title>Re: QLIKview networkdays ignore weekend</title>
      <link>https://community.qlik.com/t5/QlikView/QLIKview-networkdays-ignore-weekend/m-p/85516#M761956</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thx Pooja,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually I am quite new with QV. I already try that trick before I post this discussion. I can't understand / didn't know how to adopt the script into my actual script.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Jul 2018 07:02:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QLIKview-networkdays-ignore-weekend/m-p/85516#M761956</guid>
      <dc:creator>mohdhaniff</dc:creator>
      <dc:date>2018-07-31T07:02:10Z</dc:date>
    </item>
    <item>
      <title>Re: QLIKview networkdays ignore weekend</title>
      <link>https://community.qlik.com/t5/QlikView/QLIKview-networkdays-ignore-weekend/m-p/85517#M761957</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thx Sibin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Jul 2018 07:47:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QLIKview-networkdays-ignore-weekend/m-p/85517#M761957</guid>
      <dc:creator>mohdhaniff</dc:creator>
      <dc:date>2018-07-31T07:47:27Z</dc:date>
    </item>
    <item>
      <title>Re: QLIKview networkdays ignore weekend</title>
      <link>https://community.qlik.com/t5/QlikView/QLIKview-networkdays-ignore-weekend/m-p/1663653#M761958</link>
      <description>&lt;P&gt;I know this is old, but I have just done this with the networkdays formula and it seemed an easier method&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;set vHolidays= '01/05/2019','22/05/2019','24/05/5019','19/5/2019';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;([End Date]-[Start Date]-(NetWorkDays([Start Date],[End Date])-NetWorkDays([Start Date],[End Date],$(vHolidays)))) as [Start To End Days],//Remove holidays but leave weekends&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jan 2020 11:51:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QLIKview-networkdays-ignore-weekend/m-p/1663653#M761958</guid>
      <dc:creator>chriswain2</dc:creator>
      <dc:date>2020-01-08T11:51:47Z</dc:date>
    </item>
  </channel>
</rss>

