<?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: Find nearest monday from the given date in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Find-nearest-monday-from-the-given-date/m-p/1427714#M799402</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Praveen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Date(WeekEnd(Date#('8/12/2017','DD/MM/YYYY'))+1)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 05 Dec 2017 10:03:01 GMT</pubDate>
    <dc:creator>tamilarasu</dc:creator>
    <dc:date>2017-12-05T10:03:01Z</dc:date>
    <item>
      <title>Find nearest monday from the given date</title>
      <link>https://community.qlik.com/t5/QlikView/Find-nearest-monday-from-the-given-date/m-p/1427712#M799400</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi friends,&lt;/P&gt;&lt;P&gt;I want to get the next monday date from the given date like if i have a date called 8/12/2017 . from this date i want to get the next monday date like 11/12/2017 . in the same manner i have to get month last date also like 29/12/2017, i have to get 1/2/2018 in the load script. &lt;/P&gt;&lt;P&gt;Any help is much appreciated friends.&lt;/P&gt;&lt;P&gt;please let me know in case of any clarifications.&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/Find-nearest-monday-from-the-given-date/m-p/1427712#M799400</guid>
      <dc:creator>praveenkumar_s</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Find nearest monday from the given date</title>
      <link>https://community.qlik.com/t5/QlikView/Find-nearest-monday-from-the-given-date/m-p/1427713#M799401</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe something like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Weekstart(Max(DateField)+6)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to get next monday for a given date field value (used Max() in case there are more than one possible values).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Dec 2017 10:01:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Find-nearest-monday-from-the-given-date/m-p/1427713#M799401</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2017-12-05T10:01:18Z</dc:date>
    </item>
    <item>
      <title>Re: Find nearest monday from the given date</title>
      <link>https://community.qlik.com/t5/QlikView/Find-nearest-monday-from-the-given-date/m-p/1427714#M799402</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Praveen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Date(WeekEnd(Date#('8/12/2017','DD/MM/YYYY'))+1)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Dec 2017 10:03:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Find-nearest-monday-from-the-given-date/m-p/1427714#M799402</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2017-12-05T10:03:01Z</dc:date>
    </item>
    <item>
      <title>Re: Find nearest monday from the given date</title>
      <link>https://community.qlik.com/t5/QlikView/Find-nearest-monday-from-the-given-date/m-p/1427715#M799403</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This will return today's date if today is a Monday, otherwise the next Monday.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;if(num(weekday(&amp;lt;YourDateField&amp;gt;)) = 0, &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;YourDateField&amp;gt;&lt;/SPAN&gt;,&amp;nbsp; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; date(&lt;STRONG style="font-size: 13.3333px;"&gt;&amp;lt;YourDateField&amp;gt;&lt;/STRONG&gt;+ 7 - num(weekday(&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;lt;YourDateField&amp;gt;&lt;/SPAN&gt;)) ) &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;This will return the next Monday&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;date(&lt;STRONG style="font-size: 13.3333px;"&gt;&amp;lt;YourDateField&amp;gt; &lt;/STRONG&gt;+ 7 - num(weekday(&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG style="font-size: 13.3333px;"&gt;&amp;lt;YourDateField&amp;gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;)) )&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Dec 2017 10:07:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Find-nearest-monday-from-the-given-date/m-p/1427715#M799403</guid>
      <dc:creator>Colin-Albert</dc:creator>
      <dc:date>2017-12-05T10:07:50Z</dc:date>
    </item>
    <item>
      <title>Re: Find nearest monday from the given date</title>
      <link>https://community.qlik.com/t5/QlikView/Find-nearest-monday-from-the-given-date/m-p/1427716#M799404</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;give it a try with&lt;/P&gt;&lt;P&gt;WEEKSTART(MyDate) +7&lt;/P&gt;&lt;P&gt;second one is not quite clear&lt;/P&gt;&lt;P&gt;MONTHSTART(ADDMONTHS(MyDate), 1))&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; should deliver the first day of the next month&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Dec 2017 10:13:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Find-nearest-monday-from-the-given-date/m-p/1427716#M799404</guid>
      <dc:creator>prieper</dc:creator>
      <dc:date>2017-12-05T10:13:15Z</dc:date>
    </item>
    <item>
      <title>Re: Find nearest monday from the given date</title>
      <link>https://community.qlik.com/t5/QlikView/Find-nearest-monday-from-the-given-date/m-p/1427717#M799405</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Very thanks, this is exactly what i want.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Dec 2017 10:17:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Find-nearest-monday-from-the-given-date/m-p/1427717#M799405</guid>
      <dc:creator>praveenkumar_s</dc:creator>
      <dc:date>2017-12-05T10:17:35Z</dc:date>
    </item>
    <item>
      <title>Re: Find nearest monday from the given date</title>
      <link>https://community.qlik.com/t5/QlikView/Find-nearest-monday-from-the-given-date/m-p/1427718#M799406</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Or simply try,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WeekEnd(&lt;STRONG&gt;DateField&lt;/STRONG&gt;,0,1)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Dec 2017 10:25:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Find-nearest-monday-from-the-given-date/m-p/1427718#M799406</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2017-12-05T10:25:26Z</dc:date>
    </item>
  </channel>
</rss>

