<?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 Working Days + Excel in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Working-Days-Excel/m-p/1328413#M823840</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Everyone,&lt;/P&gt;&lt;P&gt;i'm using this formula &lt;STRONG&gt;NetWorkDays(Date,Date) as WorkingDay &lt;/STRONG&gt; to calculate working days; based on this all days from Monday to Friday are considered as working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to add an excel file, where to list only the holidays and have then the flag WorkingDay to 0 (which means non-working-day).&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Anyone can help me and suggest me how to achieve this?&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
    <dc:creator>qlikviewaf</dc:creator>
    <dc:date>2020-11-25T16:16:04Z</dc:date>
    <item>
      <title>Working Days + Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Working-Days-Excel/m-p/1328413#M823840</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Everyone,&lt;/P&gt;&lt;P&gt;i'm using this formula &lt;STRONG&gt;NetWorkDays(Date,Date) as WorkingDay &lt;/STRONG&gt; to calculate working days; based on this all days from Monday to Friday are considered as working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to add an excel file, where to list only the holidays and have then the flag WorkingDay to 0 (which means non-working-day).&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Anyone can help me and suggest me how to achieve this?&lt;/P&gt;&lt;P&gt;Thank you&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/Working-Days-Excel/m-p/1328413#M823840</guid>
      <dc:creator>qlikviewaf</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Working Days + Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Working-Days-Excel/m-p/1328414#M823841</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Antonio,&lt;/P&gt;&lt;P&gt;File Excel like this below&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/172074_pastedImage_0.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;P&gt;Script :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;&lt;STRONG style="font-size: 10pt;"&gt;LOAD&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;SPAN style="color: #0000ff;"&gt;Concat&lt;/SPAN&gt;(&lt;SPAN style="color: #0000ff;"&gt;DISTINCT&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;Chr&lt;/SPAN&gt;(39)&amp;amp;&lt;SPAN style="color: #800000;"&gt;Holiday&lt;/SPAN&gt;&amp;amp;&lt;SPAN style="color: #0000ff;"&gt;Chr&lt;/SPAN&gt;(39),',') &lt;SPAN style="color: #0000ff;"&gt;as&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;HDS&lt;/SPAN&gt;;&lt;BR /&gt; &lt;STRONG style=": ; color: #0000ff;"&gt;LOAD&lt;/STRONG&gt; &lt;SPAN style="color: #0000ff;"&gt;Date&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;Holiday&lt;/SPAN&gt;) &lt;SPAN style="color: #0000ff;"&gt;as&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;Holiday&lt;/SPAN&gt;&lt;BR /&gt; &lt;SPAN style="color: #0000ff;"&gt;FROM&lt;/SPAN&gt;&lt;BR /&gt; [Holiday.xls]&lt;BR /&gt; (&lt;SPAN style="color: #0000ff;"&gt;biff&lt;/SPAN&gt;, &lt;SPAN style="color: #0000ff;"&gt;embedded&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;labels&lt;/SPAN&gt;, &lt;SPAN style="color: #0000ff;"&gt;table&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;is&lt;/SPAN&gt; Foglio1$);&lt;BR /&gt; &lt;STRONG style=": ; color: #0000ff;"&gt;LET&lt;/STRONG&gt; &lt;STRONG&gt;&lt;EM style=": ; color: #808080;"&gt;vHolidays&lt;/EM&gt;&lt;/STRONG&gt;=&lt;SPAN style="color: #0000ff;"&gt;Peek&lt;/SPAN&gt;('HDS'); &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Expression :&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;NetWorkDays&lt;/SPAN&gt;&lt;SPAN&gt;('01/07/2017','31/07/2017',&lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM style=": ; color: #808080; font-size: 8pt;"&gt;$(vHolidays)&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN&gt;) &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Antonio&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Aug 2017 15:01:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Working-Days-Excel/m-p/1328414#M823841</guid>
      <dc:creator>antoniotiman</dc:creator>
      <dc:date>2017-08-01T15:01:37Z</dc:date>
    </item>
  </channel>
</rss>

