<?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: Calculate normal, after and weekend periods in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Calculate-normal-after-and-weekend-periods/m-p/140976#M20966</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi John, dates overlaps beacuse NormalHours and AfterHours are not filtering to remove the weekends, and the weekends were counting friday also as weekend instead of only NormalHours or AfterHours . The expressions are:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; if(&lt;STRONG&gt;WeekDayNo &amp;lt;=4 and&lt;/STRONG&gt; frac(START_TIME) &amp;gt; maketime($(vStartHour)),1,0 ) as Start_AfterHours ,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp; if(&lt;STRONG&gt;WeekDayNo &amp;lt;=4 and f&lt;/STRONG&gt;rac(START_TIME) &amp;lt; maketime($(vEndHour)),1,0 ) as Start_NormalHours ,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; if( WeekDayNo&lt;STRONG&gt; &amp;gt;4&lt;/STRONG&gt; and WeekDayNo &amp;lt;=6, if(frac(START_TIME) &amp;gt; maketime($(vStartHour)) and frac(START_TIME) &amp;gt; maketime($(vEndHour)),1,0 ) ) as Weekends&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 29 Oct 2018 09:46:12 GMT</pubDate>
    <dc:creator>rubenmarin</dc:creator>
    <dc:date>2018-10-29T09:46:12Z</dc:date>
    <item>
      <title>Calculate normal, after and weekend periods</title>
      <link>https://community.qlik.com/t5/QlikView/Calculate-normal-after-and-weekend-periods/m-p/140975#M20965</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;Good day. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;I am requesting assistance with calculation ‘after hours’, ‘normal hours’ and over ‘weekend’ periods. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;Weekends are defined from a Friday afternoon 18:00 to Monday morning 06:00. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;After Hours is defined as 18:00 to 06:00, Monday to Friday. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;Normal hours is 06:00 to 18:00, Monday to Friday. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;This all gets defined from the field [Departure Time]. [Departure Time] has a timestamp &lt;SPAN style="color: black;"&gt;'YYYY-MM-DD hh:mm’.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;Initially I tried calculating this as part of a field in the script, but it got the better of me.&amp;nbsp; My thought now is calculate 3 separate parameter fields, ‘1 or 0’. I can then in set analysis select what I want to calculate. &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;Even with this plan, it has a few complications. If I use: &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;if&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;WeekDayNo&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt; &amp;gt;3 &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;and&lt;/SPAN&gt; &lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: maroon;"&gt;WeekDayNo&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt; &amp;lt;=6, &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;if&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: blue;"&gt;frac&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;START_TIME&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;) &amp;gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;maketime&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;(&lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM style="color: gray; font-size: 9.0pt; font-family: 'Courier New';"&gt;$(vStartHour)&lt;/EM&gt;&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;and&lt;/SPAN&gt; &lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;frac&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;START_TIME&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;) &amp;gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;maketime&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;(&lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM style="color: gray; font-size: 9.0pt; font-family: 'Courier New';"&gt;$(vEndHour)&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;),1,0 ) )&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;as&lt;/SPAN&gt; &lt;SPAN style="font-size: 9.0pt; font-family: 'Courier New'; color: maroon;"&gt;Weekends &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;The Friday to the Weekend ‘overlaps’. I would really appreciate any guidance with this from people who have looked at something similar to this. I include a sample extract with qvw. Please note in the file there is a record I created manually. It is a record that appears after midnight: &lt;/SPAN&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="padding: 0 5.4pt 0 5.4pt;" width="513"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD nowrap="nowrap" style="border: solid gainsboro 1.0pt; background: #FFC000; padding: 0 5.4pt 0 5.4pt;" valign="bottom" width="123"&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;‘&lt;/SPAN&gt;&lt;SPAN style="font-size: 8.0pt; font-family: 'Tahoma',sans-serif; color: #333333;"&gt;AAAAAAA&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border: solid gainsboro 1.0pt; border-left: none; background: #FFC000; padding: 0 5.4pt 0 5.4pt;" valign="bottom" width="144"&gt;&lt;P align="right" style="margin-bottom: .0001pt; text-align: right;"&gt;&lt;SPAN style="font-size: 8.0pt; font-family: 'Tahoma',sans-serif; color: #333333;"&gt;2018-02-02 01:14&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border: solid gainsboro 1.0pt; border-left: none; background: #FFC000; padding: 0 5.4pt 0 5.4pt;" valign="bottom" width="148"&gt;&lt;P align="right" style="margin-bottom: .0001pt; text-align: right;"&gt;&lt;SPAN style="font-size: 8.0pt; font-family: 'Tahoma',sans-serif; color: #333333;"&gt;2018-02-02 12:04&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD nowrap="nowrap" style="border: solid gainsboro 1.0pt; border-left: none; background: #FFC000; padding: 0 5.4pt 0 5.4pt;" valign="bottom" width="99"&gt;&lt;P align="right" style="margin-bottom: .0001pt; text-align: right;"&gt;&lt;SPAN style="font-size: 8.0pt; font-family: 'Tahoma',sans-serif; color: #333333;"&gt;1000&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;Thank you very much in advance. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Oct 2018 05:46:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculate-normal-after-and-weekend-periods/m-p/140975#M20965</guid>
      <dc:creator>johngouws</dc:creator>
      <dc:date>2018-10-29T05:46:08Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate normal, after and weekend periods</title>
      <link>https://community.qlik.com/t5/QlikView/Calculate-normal-after-and-weekend-periods/m-p/140976#M20966</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi John, dates overlaps beacuse NormalHours and AfterHours are not filtering to remove the weekends, and the weekends were counting friday also as weekend instead of only NormalHours or AfterHours . The expressions are:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; if(&lt;STRONG&gt;WeekDayNo &amp;lt;=4 and&lt;/STRONG&gt; frac(START_TIME) &amp;gt; maketime($(vStartHour)),1,0 ) as Start_AfterHours ,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp; if(&lt;STRONG&gt;WeekDayNo &amp;lt;=4 and f&lt;/STRONG&gt;rac(START_TIME) &amp;lt; maketime($(vEndHour)),1,0 ) as Start_NormalHours ,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; if( WeekDayNo&lt;STRONG&gt; &amp;gt;4&lt;/STRONG&gt; and WeekDayNo &amp;lt;=6, if(frac(START_TIME) &amp;gt; maketime($(vStartHour)) and frac(START_TIME) &amp;gt; maketime($(vEndHour)),1,0 ) ) as Weekends&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Oct 2018 09:46:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculate-normal-after-and-weekend-periods/m-p/140976#M20966</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2018-10-29T09:46:12Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate normal, after and weekend periods</title>
      <link>https://community.qlik.com/t5/QlikView/Calculate-normal-after-and-weekend-periods/m-p/140977#M20967</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Ruben. Thank you very much for your solution. Unfortunately, the transaction I marked in Orange at 01:14, as a test, does not show as a after hours transaction. It shows up in the Start_NormalHours. Normal hours only starts at 06:00 in the morning.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much for giving input. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Oct 2018 11:59:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculate-normal-after-and-weekend-periods/m-p/140977#M20967</guid>
      <dc:creator>johngouws</dc:creator>
      <dc:date>2018-10-29T11:59:35Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate normal, after and weekend periods</title>
      <link>https://community.qlik.com/t5/QlikView/Calculate-normal-after-and-weekend-periods/m-p/140978#M20968</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Right, I did it too quick, can you try?:&lt;/P&gt;&lt;P&gt;if(WeekDayNo &amp;lt;=4 and frac(START_TIME) &amp;gt;= maketime($(vDayStart))and frac(START_TIME) &amp;lt;= maketime($(vDayEnd)),1,0 ) as Start_NormalHours,&lt;/P&gt;&lt;P&gt;&amp;nbsp; if(WeekDayNo &amp;lt;=4 and (frac(START_TIME) &amp;lt; maketime($(vDayStart)) or frac(START_TIME) &amp;gt; maketime($(vEndHour))),1,0 ) as Start_AfterHours ,&lt;/P&gt;&lt;P&gt;if( WeekDayNo &amp;gt;4 and WeekDayNo &amp;lt;=6, if(frac(START_TIME) &amp;gt; maketime($(vStartHour)) and frac(START_TIME) &amp;gt; maketime($(vEndHour)),1,0 ) ) as Weekends&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Oct 2018 12:42:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculate-normal-after-and-weekend-periods/m-p/140978#M20968</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2018-10-29T12:42:37Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate normal, after and weekend periods</title>
      <link>https://community.qlik.com/t5/QlikView/Calculate-normal-after-and-weekend-periods/m-p/140979#M20969</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Ruben, that is so close.. The weekend time is a problem doing it this way because it 'looses' the daytime hours between 06:00 and 18:00. I have a solution, maybe not the slickest but will work, but my nested if's don't work out. Basically what I am saying is: &lt;/P&gt;&lt;P&gt;if( WeekDayNo =4, if(frac(START_TIME) &amp;gt; maketime($(vDayEnd)),1,0 ) ) as Weekends_Friday - gives Friday evenings. &lt;/P&gt;&lt;P&gt;if( WeekDayNo &amp;gt;=5 and WeekDayNo &amp;lt;=6, 1,0 )&amp;nbsp; as Weekends_Sat_Sun, - gives Saturdays and Sundays. &lt;/P&gt;&lt;P&gt;if( WeekDayNo =0, if(frac(START_TIME) &amp;lt; maketime($(vEndHour)),1,0 ) ) as Weekends_Monday, - Gives Monday mornings. &lt;/P&gt;&lt;P&gt;These periods define what is classed as the Weekend. If I put this logic together it does not work. Could you see where I have the problem? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(WeekDayNo =4, if(frac(START_TIME) &amp;gt; maketime($(vDayEnd))), 1,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(WeekDayNo &amp;gt;=5 and WeekDayNo &amp;lt;=6), 1,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(WeekDayNo =0, if(frac(START_TIME) &amp;lt; maketime($(vEndHour))), 1,&lt;/P&gt;&lt;P&gt;0)) as [Weekends]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much for your help. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Oct 2018 02:55:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculate-normal-after-and-weekend-periods/m-p/140979#M20969</guid>
      <dc:creator>johngouws</dc:creator>
      <dc:date>2018-10-30T02:55:39Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate normal, after and weekend periods</title>
      <link>https://community.qlik.com/t5/QlikView/Calculate-normal-after-and-weekend-periods/m-p/140980#M20970</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If will be easier if you group conditions with parenthesys instead of nested if's:&lt;/P&gt;&lt;P&gt;if(WeekDayNo &amp;lt;=4 and frac(START_TIME) &amp;gt;= maketime($(vDayStart))and frac(START_TIME) &amp;lt;= maketime($(vDayEnd)),1,0 ) as Start_NormalHours,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If((WeekDayNo=0 and frac(START_TIME)&amp;gt; maketime($(vDayEnd))) or (WeekDayNo=4 and frac(START_TIME)&amp;lt; maketime($(vDayStart)))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; or (WeekDayNo&amp;gt;0 and&amp;nbsp; WeekDayNo&amp;lt;4 and (frac(START_TIME) &amp;lt; maketime($(vDayStart)) or frac(START_TIME) &amp;gt; maketime($(vDayEnd)))),1,0 ) as Start_AfterHours ,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; If((WeekDayNo=0 and frac(START_TIME)&amp;lt; maketime($(vDayStart))) or (WeekDayNo=4 and frac(START_TIME)&amp;gt; maketime($(vDayEnd)))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; or (Match(WeekDayNo,5,6)),1,0) as Weekends&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Oct 2018 07:27:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculate-normal-after-and-weekend-periods/m-p/140980#M20970</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2018-10-30T07:27:20Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate normal, after and weekend periods</title>
      <link>https://community.qlik.com/t5/QlikView/Calculate-normal-after-and-weekend-periods/m-p/140981#M20971</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Ruben, I have done a few validations and it works out 100%. I was concerned about that one highlighted transaction! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My problem now is that I need to learn from what you did... &lt;/P&gt;&lt;P&gt;Thank you very much for your help. If I could give you more awards, I would..&lt;/P&gt;&lt;P&gt; &lt;IMG alt="Star.jpg" class="jive-image image-1" height="57" src="https://community.qlik.com/legacyfs/online/217058_Star.jpg" style="height: 57px; width: 73.15px;" width="73" /&gt;&lt;/P&gt;&lt;P&gt;All the best. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Oct 2018 08:11:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculate-normal-after-and-weekend-periods/m-p/140981#M20971</guid>
      <dc:creator>johngouws</dc:creator>
      <dc:date>2018-10-30T08:11:13Z</dc:date>
    </item>
  </channel>
</rss>

