<?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: Handle weekends and public holidays , consider next working day data Qliksense in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Handle-weekends-and-public-holidays-consider-next-working-day/m-p/2028175#M84718</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/48554"&gt;@brunobertels&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for your response. But I can't upload external QVF in my Qliksense due to access restriction.&lt;/P&gt;
&lt;P&gt;Could you please share the script here ?&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
    <pubDate>Fri, 20 Jan 2023 09:13:22 GMT</pubDate>
    <dc:creator>Aspiring_Developer</dc:creator>
    <dc:date>2023-01-20T09:13:22Z</dc:date>
    <item>
      <title>Handle weekends and public holidays , consider next working day data Qliksense</title>
      <link>https://community.qlik.com/t5/App-Development/Handle-weekends-and-public-holidays-consider-next-working-day/m-p/2024257#M84503</link>
      <description>&lt;P&gt;Hello All ,&lt;/P&gt;
&lt;P&gt;I have below data set :-&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Aspiring_Developer_0-1673433663585.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/97763iF52A5758A8F89160/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Aspiring_Developer_0-1673433663585.png" alt="Aspiring_Developer_0-1673433663585.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Data highlighted with yellow are weekends&lt;/P&gt;
&lt;P&gt;Data highlighted with Peach is public holidays.&lt;/P&gt;
&lt;P&gt;I have created below logic where we are taking sum(volume) only for the last working day of each month .&lt;/P&gt;
&lt;P&gt;At backend -&lt;BR /&gt;If(floor(MonthEnd(REPORT_DATE))=REPORT_DATE,1,0) as isLastDayOfMonth,&lt;/P&gt;
&lt;P&gt;Front end = Sum({&amp;lt;isLasyDayofMonth={1}&amp;gt;}Volume).&lt;/P&gt;
&lt;P&gt;Now, I need to add one more clause here . If the last working day is Saturday , Sunday or Public holiday . So , it shoud display the next opening day value .&lt;/P&gt;
&lt;P&gt;For instance, this month closing value of Dec2022(31/12/2022) is 105.&lt;BR /&gt;But 31st dec 2022 is saturday , then 1st jan 2023 is Sunday and 2nd jan 2023 is a public holiday .&lt;BR /&gt;So , it should display the value of 3rd jan 2022 which is 87 against dec 2022 . So, 3rd jan 2023 value will be considerd as closing month value for previous month.&lt;/P&gt;
&lt;P&gt;Can anyone please help me how Can i add this clause in my logic ?&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jan 2023 10:51:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Handle-weekends-and-public-holidays-consider-next-working-day/m-p/2024257#M84503</guid>
      <dc:creator>Aspiring_Developer</dc:creator>
      <dc:date>2023-01-11T10:51:09Z</dc:date>
    </item>
    <item>
      <title>Re: Handle weekends and public holidays , consider next working day data Qliksense</title>
      <link>https://community.qlik.com/t5/App-Development/Handle-weekends-and-public-holidays-consider-next-working-day/m-p/2024956#M84532</link>
      <description>&lt;P&gt;Hi ,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can anyone please help me on this one ?&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 12 Jan 2023 13:25:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Handle-weekends-and-public-holidays-consider-next-working-day/m-p/2024956#M84532</guid>
      <dc:creator>Aspiring_Developer</dc:creator>
      <dc:date>2023-01-12T13:25:08Z</dc:date>
    </item>
    <item>
      <title>Re: Handle weekends and public holidays , consider next working day data Qliksense</title>
      <link>https://community.qlik.com/t5/App-Development/Handle-weekends-and-public-holidays-consider-next-working-day/m-p/2025106#M84545</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just a test only with one date 31/12/2022 with lastworkdate fonction give the desired date&amp;nbsp; :&lt;/P&gt;
&lt;P&gt;LastWorkDate('31/12/2022',1,'01/01/2023','02/01/2023')&lt;/P&gt;
&lt;P&gt;then may be with&amp;nbsp;&lt;/P&gt;
&lt;P&gt;lastwordate(monthend(Yourdate), 1 , your holidays date ) should work&amp;nbsp;&lt;/P&gt;
&lt;P&gt;not tested on whole calendar date&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Jan 2023 17:47:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Handle-weekends-and-public-holidays-consider-next-working-day/m-p/2025106#M84545</guid>
      <dc:creator>brunobertels</dc:creator>
      <dc:date>2023-01-12T17:47:02Z</dc:date>
    </item>
    <item>
      <title>Re: Handle weekends and public holidays , consider next working day data Qliksense</title>
      <link>https://community.qlik.com/t5/App-Development/Handle-weekends-and-public-holidays-consider-next-working-day/m-p/2025480#M84568</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/48554"&gt;@brunobertels&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for your response.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;I understand we can make use of last work date. However, it is not clear to me how should I use it precisely in my sample code above.&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Jan 2023 12:36:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Handle-weekends-and-public-holidays-consider-next-working-day/m-p/2025480#M84568</guid>
      <dc:creator>Aspiring_Developer</dc:creator>
      <dc:date>2023-01-13T12:36:58Z</dc:date>
    </item>
    <item>
      <title>Re: Handle weekends and public holidays , consider next working day data Qliksense</title>
      <link>https://community.qlik.com/t5/App-Development/Handle-weekends-and-public-holidays-consider-next-working-day/m-p/2027664#M84687</link>
      <description>&lt;P&gt;Hello All,&lt;/P&gt;
&lt;P&gt;Can anyone please help me with this one ?&lt;/P&gt;
&lt;P&gt;I tired but did not find any approach to create it.&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 19 Jan 2023 10:05:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Handle-weekends-and-public-holidays-consider-next-working-day/m-p/2027664#M84687</guid>
      <dc:creator>Aspiring_Developer</dc:creator>
      <dc:date>2023-01-19T10:05:15Z</dc:date>
    </item>
    <item>
      <title>Re: Handle weekends and public holidays , consider next working day data Qliksense</title>
      <link>https://community.qlik.com/t5/App-Development/Handle-weekends-and-public-holidays-consider-next-working-day/m-p/2028006#M84711</link>
      <description>&lt;P&gt;G'day&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/103918"&gt;@Aspiring_Developer&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;I don't have a full answer, but I have a couple of ideas that might help:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;I think the logic would be simplified if you look for the first working day of each month and then apply that&amp;nbsp; volume to the previous month&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://community.qlik.com/t5/QlikView-App-Dev/Select-first-working-days-of-selected-months/m-p/1368871" target="_blank" rel="noopener"&gt;Here&lt;/A&gt; is a link to a discussion on finding the first working day. If you can get this working, then you can add in the public holidays.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;I hope this is useful.&lt;/P&gt;
&lt;P&gt;Cheers, Barnaby.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Jan 2023 20:42:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Handle-weekends-and-public-holidays-consider-next-working-day/m-p/2028006#M84711</guid>
      <dc:creator>barnabyd</dc:creator>
      <dc:date>2023-01-19T20:42:19Z</dc:date>
    </item>
    <item>
      <title>Re: Handle weekends and public holidays , consider next working day data Qliksense</title>
      <link>https://community.qlik.com/t5/App-Development/Handle-weekends-and-public-holidays-consider-next-working-day/m-p/2028073#M84713</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/103918"&gt;@Aspiring_Developer&lt;/a&gt;&amp;nbsp; Do you any other column in your table, which says if particular date is public holiday or not?&lt;/P&gt;</description>
      <pubDate>Fri, 20 Jan 2023 02:37:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Handle-weekends-and-public-holidays-consider-next-working-day/m-p/2028073#M84713</guid>
      <dc:creator>sidhiq91</dc:creator>
      <dc:date>2023-01-20T02:37:14Z</dc:date>
    </item>
    <item>
      <title>Re: Handle weekends and public holidays , consider next working day data Qliksense</title>
      <link>https://community.qlik.com/t5/App-Development/Handle-weekends-and-public-holidays-consider-next-working-day/m-p/2028125#M84714</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/6188"&gt;@sidhiq91&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;No, I don't have&amp;nbsp; a specific column in my data set . Though I have the list of&amp;nbsp; holidays provided to me .&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 20 Jan 2023 07:22:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Handle-weekends-and-public-holidays-consider-next-working-day/m-p/2028125#M84714</guid>
      <dc:creator>Aspiring_Developer</dc:creator>
      <dc:date>2023-01-20T07:22:03Z</dc:date>
    </item>
    <item>
      <title>Re: Handle weekends and public holidays , consider next working day data Qliksense</title>
      <link>https://community.qlik.com/t5/App-Development/Handle-weekends-and-public-holidays-consider-next-working-day/m-p/2028171#M84717</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;/P&gt;
&lt;P&gt;See attached qvf and excel for sample data ( volume from 01/12/2022 till 04/07/2023 )&amp;nbsp;&lt;/P&gt;
&lt;P&gt;here the script I used&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1 load table with a flag&amp;nbsp; using lastworkdate function&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2 load a temp table with only monthend date and Flag date&lt;/P&gt;
&lt;P&gt;3 then left join on first table&amp;nbsp; &amp;nbsp;volume found for Flag Date regarding this time the end of month date&amp;nbsp;&lt;/P&gt;
&lt;P&gt;4&amp;nbsp; left join this end month Volume found on last day of month&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope it helps&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Jan 2023 09:07:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Handle-weekends-and-public-holidays-consider-next-working-day/m-p/2028171#M84717</guid>
      <dc:creator>brunobertels</dc:creator>
      <dc:date>2023-01-20T09:07:11Z</dc:date>
    </item>
    <item>
      <title>Re: Handle weekends and public holidays , consider next working day data Qliksense</title>
      <link>https://community.qlik.com/t5/App-Development/Handle-weekends-and-public-holidays-consider-next-working-day/m-p/2028175#M84718</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/48554"&gt;@brunobertels&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for your response. But I can't upload external QVF in my Qliksense due to access restriction.&lt;/P&gt;
&lt;P&gt;Could you please share the script here ?&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 20 Jan 2023 09:13:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Handle-weekends-and-public-holidays-consider-next-working-day/m-p/2028175#M84718</guid>
      <dc:creator>Aspiring_Developer</dc:creator>
      <dc:date>2023-01-20T09:13:22Z</dc:date>
    </item>
    <item>
      <title>Re: Handle weekends and public holidays , consider next working day data Qliksense</title>
      <link>https://community.qlik.com/t5/App-Development/Handle-weekends-and-public-holidays-consider-next-working-day/m-p/2028198#M84722</link>
      <description>&lt;P&gt;hi&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ok&amp;nbsp;&lt;/P&gt;
&lt;P&gt;see below code&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Table:&lt;BR /&gt;load&lt;BR /&gt;date#(date(num([Report Date]),'DD/MM/YYYY'),'DD/MM/YYYY') as [Report Date],&lt;BR /&gt;weekday(date#(date(num([Report Date]),'DD/MM/YYYY'),'DD/MM/YYYY')) as weekday,&lt;BR /&gt;if(floor(monthend([Report Date])) = [Report Date],&lt;BR /&gt;date(lastworkdate(monthend([Report Date]), 1, $(HolidayList)),'DD/MM/YYYY'),null() ) as FLAG,&lt;BR /&gt;[volume] ;&lt;/P&gt;
&lt;P&gt;load * inline [&lt;BR /&gt;Report Date,volume&lt;BR /&gt;44896,10&lt;BR /&gt;44897,20&lt;BR /&gt;44898,30&lt;BR /&gt;44899,40&lt;BR /&gt;44900,50&lt;BR /&gt;44901,60&lt;BR /&gt;44902,70&lt;BR /&gt;44903,80&lt;BR /&gt;44904,90&lt;BR /&gt;44905,100&lt;BR /&gt;44906,90&lt;BR /&gt;44907,80&lt;BR /&gt;44908,70&lt;BR /&gt;44909,60&lt;BR /&gt;44910,50&lt;BR /&gt;44911,40&lt;BR /&gt;44912,30&lt;BR /&gt;44913,20&lt;BR /&gt;44914,10&lt;BR /&gt;44915,5&lt;BR /&gt;44916,10&lt;BR /&gt;44917,15&lt;BR /&gt;44918,20&lt;BR /&gt;44919,25&lt;BR /&gt;44920,30&lt;BR /&gt;44921,35&lt;BR /&gt;44922,40&lt;BR /&gt;44923,45&lt;BR /&gt;44924,50&lt;BR /&gt;44925,55&lt;BR /&gt;44926,60&lt;BR /&gt;44927,65&lt;BR /&gt;44928,70&lt;BR /&gt;44929,75&lt;BR /&gt;44930,80&lt;BR /&gt;44931,85&lt;BR /&gt;44932,90&lt;BR /&gt;44933,95&lt;BR /&gt;44934,100&lt;BR /&gt;44935,105&lt;BR /&gt;44936,115&lt;BR /&gt;44937,10&lt;BR /&gt;44938,20&lt;BR /&gt;44939,30&lt;BR /&gt;44940,40&lt;BR /&gt;44941,50&lt;BR /&gt;44942,60&lt;BR /&gt;44943,70&lt;BR /&gt;44944,80&lt;BR /&gt;44945,90&lt;BR /&gt;44946,100&lt;BR /&gt;44947,90&lt;BR /&gt;44948,80&lt;BR /&gt;44949,70&lt;BR /&gt;44950,60&lt;BR /&gt;44951,50&lt;BR /&gt;44952,40&lt;BR /&gt;44953,30&lt;BR /&gt;44954,20&lt;BR /&gt;44955,10&lt;BR /&gt;44956,5&lt;BR /&gt;44957,10&lt;BR /&gt;44958,15&lt;BR /&gt;44959,20&lt;BR /&gt;44960,25&lt;BR /&gt;44961,30&lt;BR /&gt;44962,35&lt;BR /&gt;44963,40&lt;BR /&gt;44964,45&lt;BR /&gt;44965,50&lt;BR /&gt;44966,55&lt;BR /&gt;44967,60&lt;BR /&gt;44968,65&lt;BR /&gt;44969,70&lt;BR /&gt;44970,75&lt;BR /&gt;44971,80&lt;BR /&gt;44972,85&lt;BR /&gt;44973,90&lt;BR /&gt;44974,95&lt;BR /&gt;44975,100&lt;BR /&gt;44976,105&lt;BR /&gt;44977,115&lt;BR /&gt;44978,10&lt;BR /&gt;44979,20&lt;BR /&gt;44980,30&lt;BR /&gt;44981,40&lt;BR /&gt;44982,50&lt;BR /&gt;44983,60&lt;BR /&gt;44984,70&lt;BR /&gt;44985,80&lt;BR /&gt;44986,90&lt;BR /&gt;44987,100&lt;BR /&gt;44988,90&lt;BR /&gt;44989,80&lt;BR /&gt;44990,70&lt;BR /&gt;44991,60&lt;BR /&gt;44992,50&lt;BR /&gt;44993,40&lt;BR /&gt;44994,30&lt;BR /&gt;44995,20&lt;BR /&gt;44996,10&lt;BR /&gt;44997,5&lt;BR /&gt;44998,10&lt;BR /&gt;44999,15&lt;BR /&gt;45000,20&lt;BR /&gt;45001,25&lt;BR /&gt;45002,30&lt;BR /&gt;45003,35&lt;BR /&gt;45004,40&lt;BR /&gt;45005,45&lt;BR /&gt;45006,50&lt;BR /&gt;45007,55&lt;BR /&gt;45008,60&lt;BR /&gt;45009,65&lt;BR /&gt;45010,70&lt;BR /&gt;45011,75&lt;BR /&gt;45012,80&lt;BR /&gt;45013,85&lt;BR /&gt;45014,90&lt;BR /&gt;45015,95&lt;BR /&gt;45016,100&lt;BR /&gt;45017,105&lt;BR /&gt;45018,115&lt;BR /&gt;45019,10&lt;BR /&gt;45020,20&lt;BR /&gt;45021,30&lt;BR /&gt;45022,40&lt;BR /&gt;45023,50&lt;BR /&gt;45024,60&lt;BR /&gt;45025,70&lt;BR /&gt;45026,80&lt;BR /&gt;45027,90&lt;BR /&gt;45028,100&lt;BR /&gt;45029,90&lt;BR /&gt;45030,80&lt;BR /&gt;45031,70&lt;BR /&gt;45032,60&lt;BR /&gt;45033,50&lt;BR /&gt;45034,40&lt;BR /&gt;45035,30&lt;BR /&gt;45036,20&lt;BR /&gt;45037,10&lt;BR /&gt;45038,5&lt;BR /&gt;45039,10&lt;BR /&gt;45040,15&lt;BR /&gt;45041,20&lt;BR /&gt;45042,25&lt;BR /&gt;45043,30&lt;BR /&gt;45044,35&lt;BR /&gt;45045,40&lt;BR /&gt;45046,45&lt;BR /&gt;45047,50&lt;BR /&gt;45048,55&lt;BR /&gt;45049,60&lt;BR /&gt;45050,65&lt;BR /&gt;45051,70&lt;BR /&gt;45052,75&lt;BR /&gt;45053,80&lt;BR /&gt;45054,85&lt;BR /&gt;45055,90&lt;BR /&gt;45056,95&lt;BR /&gt;45057,100&lt;BR /&gt;45058,105&lt;BR /&gt;45059,115&lt;BR /&gt;45060,10&lt;BR /&gt;45061,20&lt;BR /&gt;45062,30&lt;BR /&gt;45063,40&lt;BR /&gt;45064,50&lt;BR /&gt;45065,60&lt;BR /&gt;45066,70&lt;BR /&gt;45067,80&lt;BR /&gt;45068,90&lt;BR /&gt;45069,100&lt;BR /&gt;45070,90&lt;BR /&gt;45071,80&lt;BR /&gt;45072,70&lt;BR /&gt;45073,60&lt;BR /&gt;45074,50&lt;BR /&gt;45075,40&lt;BR /&gt;45076,30&lt;BR /&gt;45077,20&lt;BR /&gt;45078,10&lt;BR /&gt;45079,5&lt;BR /&gt;45080,10&lt;BR /&gt;45081,15&lt;BR /&gt;45082,20&lt;BR /&gt;45083,25&lt;BR /&gt;45084,30&lt;BR /&gt;45085,35&lt;BR /&gt;45086,40&lt;BR /&gt;45087,45&lt;BR /&gt;45088,50&lt;BR /&gt;45089,55&lt;BR /&gt;45090,60&lt;BR /&gt;45091,65&lt;BR /&gt;45092,70&lt;BR /&gt;45093,75&lt;BR /&gt;45094,80&lt;BR /&gt;45095,85&lt;BR /&gt;45096,90&lt;BR /&gt;45097,95&lt;BR /&gt;45098,100&lt;BR /&gt;45099,105&lt;BR /&gt;45100,115&lt;BR /&gt;45101,55&lt;BR /&gt;45102,60&lt;BR /&gt;45103,65&lt;BR /&gt;45104,70&lt;BR /&gt;45105,75&lt;BR /&gt;45106,80&lt;BR /&gt;45107,85&lt;BR /&gt;45108,90&lt;BR /&gt;45109,95&lt;BR /&gt;45110,100&lt;BR /&gt;45111,105&lt;BR /&gt;] (txt) ;&lt;/P&gt;
&lt;P&gt;temp:&lt;BR /&gt;noconcatenate&lt;BR /&gt;load&lt;BR /&gt;FLAG,&lt;BR /&gt;[Report Date] as [Report Date_END]&lt;BR /&gt;resident Table where FLAG&amp;gt;0 ;&lt;BR /&gt;&lt;BR /&gt;left join (temp)&lt;BR /&gt;Load&lt;BR /&gt;[Report Date] as FLAG,&lt;BR /&gt;[volume] as VolFinMois&lt;BR /&gt;resident Table ; &lt;BR /&gt;&lt;BR /&gt;left join (Table)&lt;BR /&gt;Load &lt;BR /&gt;[Report Date_END] as [Report Date],&lt;BR /&gt;VolFinMois&lt;BR /&gt;resident temp;&lt;BR /&gt;&lt;BR /&gt;drop table temp;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Jan 2023 10:18:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Handle-weekends-and-public-holidays-consider-next-working-day/m-p/2028198#M84722</guid>
      <dc:creator>brunobertels</dc:creator>
      <dc:date>2023-01-20T10:18:47Z</dc:date>
    </item>
  </channel>
</rss>

