<?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: Working Days by month in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Working-Days-by-month/m-p/2145436#M94244</link>
    <description>&lt;P&gt;Sorry About that i have 12 tables which contains from jan to dec each table has Wee,WeekDay,DayOfmonth,WorkingDuration fields. at the bottom of the tables i need display total working Days excluding holiday in text object for each month&lt;/P&gt;</description>
    <pubDate>Thu, 07 Dec 2023 17:07:23 GMT</pubDate>
    <dc:creator>N_avya1</dc:creator>
    <dc:date>2023-12-07T17:07:23Z</dc:date>
    <item>
      <title>Working Days by month</title>
      <link>https://community.qlik.com/t5/App-Development/Working-Days-by-month/m-p/2145386#M94238</link>
      <description>&lt;P&gt;Hi,@everyone&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I wanted to display total working days by month.&lt;/P&gt;
&lt;P&gt;I have used below formula for feb month excluding holidays and weekends but it is displaying wrong value.Can you please help&amp;nbsp;&lt;/P&gt;
&lt;P&gt;=NetWorkDays(MonthStart(Today(),-1),MonthEnd(Today(),-1),DAY_DATE,WeekDay(DAY_DATE)='Sat' OR WeekDay(DAY_DATE)='Sun')&amp;amp;'WD'&lt;/P&gt;</description>
      <pubDate>Fri, 15 Nov 2024 21:11:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Working-Days-by-month/m-p/2145386#M94238</guid>
      <dc:creator>N_avya1</dc:creator>
      <dc:date>2024-11-15T21:11:29Z</dc:date>
    </item>
    <item>
      <title>Re: Working Days by month</title>
      <link>https://community.qlik.com/t5/App-Development/Working-Days-by-month/m-p/2145409#M94239</link>
      <description>&lt;P&gt;NetWorkDays is already removing Sundays and Saturdays.&lt;BR /&gt;Then, if you want to remove specific days (holidays), you need to specify each of them, for example:&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;NetWorkDays(StartingDate,EndingDate,'04-07-2023','23-11-2023')&lt;/FONT&gt; to remove the 4th of July and the 23rd of November.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Dec 2023 16:27:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Working-Days-by-month/m-p/2145409#M94239</guid>
      <dc:creator>vincent_ardiet_</dc:creator>
      <dc:date>2023-12-07T16:27:37Z</dc:date>
    </item>
    <item>
      <title>Re: Working Days by month</title>
      <link>https://community.qlik.com/t5/App-Development/Working-Days-by-month/m-p/2145418#M94240</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/16701"&gt;@vincent_ardiet_&lt;/a&gt;&amp;nbsp; what if we don't know the Exact holidays Date in that case what I have to mention?&lt;/P&gt;
&lt;P&gt;Note: I have Holiday Field in my Data&lt;/P&gt;</description>
      <pubDate>Thu, 07 Dec 2023 16:38:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Working-Days-by-month/m-p/2145418#M94240</guid>
      <dc:creator>N_avya1</dc:creator>
      <dc:date>2023-12-07T16:38:16Z</dc:date>
    </item>
    <item>
      <title>Re: Working Days by month</title>
      <link>https://community.qlik.com/t5/App-Development/Working-Days-by-month/m-p/2145425#M94241</link>
      <description>&lt;P&gt;If you have holidays in a field of your datamodel, you can try to generate the parameters list, for example:&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;=NetWorkDays(YearStart(Today()),Today(),$(=Concat({1}Distinct Num(HOLIDAY_DATE),',')))&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Dec 2023 16:46:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Working-Days-by-month/m-p/2145425#M94241</guid>
      <dc:creator>vincent_ardiet_</dc:creator>
      <dc:date>2023-12-07T16:46:15Z</dc:date>
    </item>
    <item>
      <title>Re: Working Days by month</title>
      <link>https://community.qlik.com/t5/App-Development/Working-Days-by-month/m-p/2145432#M94242</link>
      <description>&lt;P&gt;This Formula is working for yearstart to till today but i wanted to display each and everymonth like January total working days and feb total working days.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Dec 2023 16:57:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Working-Days-by-month/m-p/2145432#M94242</guid>
      <dc:creator>N_avya1</dc:creator>
      <dc:date>2023-12-07T16:57:49Z</dc:date>
    </item>
    <item>
      <title>Re: Working Days by month</title>
      <link>https://community.qlik.com/t5/App-Development/Working-Days-by-month/m-p/2145435#M94243</link>
      <description>&lt;P&gt;This was an example.&lt;BR /&gt;If you want to do this, you need to be more specific, this is not very clear. What are your fields, tables, in which context are you going to display this?&lt;/P&gt;</description>
      <pubDate>Thu, 07 Dec 2023 17:03:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Working-Days-by-month/m-p/2145435#M94243</guid>
      <dc:creator>vincent_ardiet_</dc:creator>
      <dc:date>2023-12-07T17:03:45Z</dc:date>
    </item>
    <item>
      <title>Re: Working Days by month</title>
      <link>https://community.qlik.com/t5/App-Development/Working-Days-by-month/m-p/2145436#M94244</link>
      <description>&lt;P&gt;Sorry About that i have 12 tables which contains from jan to dec each table has Wee,WeekDay,DayOfmonth,WorkingDuration fields. at the bottom of the tables i need display total working Days excluding holiday in text object for each month&lt;/P&gt;</description>
      <pubDate>Thu, 07 Dec 2023 17:07:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Working-Days-by-month/m-p/2145436#M94244</guid>
      <dc:creator>N_avya1</dc:creator>
      <dc:date>2023-12-07T17:07:23Z</dc:date>
    </item>
    <item>
      <title>Re: Working Days by month</title>
      <link>https://community.qlik.com/t5/App-Development/Working-Days-by-month/m-p/2145439#M94245</link>
      <description>&lt;P&gt;So you will hardcode 12 expressions right?&lt;BR /&gt;Create a variable "MonthlyNetWorkDays" like this:&lt;BR /&gt;&lt;SPAN&gt;&lt;FONT face="courier new,courier"&gt;=NetWorkDays(MakeDate(Year(Today()),$1),MonthEnd(MakeDate(Year(Today()),$1)),$(=Concat({1}Distinct Num(HOLIDAY_DATE),',')))&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;And then use &lt;FONT face="courier new,courier"&gt;$(MonthlyNetWorkDays(1))&lt;/FONT&gt; for Jan networkdays,&amp;nbsp;&lt;FONT face="courier new,courier"&gt;$(MonthlyNetWorkDays(2))&lt;/FONT&gt; for Feb...&lt;/P&gt;</description>
      <pubDate>Thu, 07 Dec 2023 17:13:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Working-Days-by-month/m-p/2145439#M94245</guid>
      <dc:creator>vincent_ardiet_</dc:creator>
      <dc:date>2023-12-07T17:13:45Z</dc:date>
    </item>
  </channel>
</rss>

