<?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: How to set monthstart in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-set-monthstart/m-p/1761815#M718361</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/18743"&gt;@soniasweety&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Try like below for your scenario.&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/t5/QlikView-Scripting/Link-2-Date-Fields-in-1-Table-to-1-Master-Calendar/td-p/84165" target="_blank"&gt;https://community.qlik.com/t5/QlikView-Scripting/Link-2-Date-Fields-in-1-Table-to-1-Master-Calendar/td-p/84165&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 16 Nov 2020 04:00:21 GMT</pubDate>
    <dc:creator>MayilVahanan</dc:creator>
    <dc:date>2020-11-16T04:00:21Z</dc:date>
    <item>
      <title>How to set monthstart</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-set-monthstart/m-p/1761402#M718355</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/17935"&gt;@MayilVahanan&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/56648"&gt;@Taoufiq_Zarra&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to count the users &amp;nbsp; from particular date.&lt;/P&gt;&lt;P&gt;I have&amp;nbsp; Month filed &amp;nbsp;&amp;nbsp; aug,sep,oct. &amp;nbsp; &amp;nbsp; and users &amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;here my month start is from&amp;nbsp; 25th to 25th.. &amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;count(users) &amp;nbsp; &amp;nbsp;&amp;nbsp; for current month &amp;nbsp;&amp;nbsp; 25th oct to 25Nov..like for previous months also.. how can I set&amp;nbsp; monthstart from 25th ?&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 17:50:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-set-monthstart/m-p/1761402#M718355</guid>
      <dc:creator>soniasweety</dc:creator>
      <dc:date>2024-11-16T17:50:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to set monthstart</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-set-monthstart/m-p/1761403#M718356</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/18743"&gt;@soniasweety&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Try like below.. Its one of the method&lt;/P&gt;&lt;P&gt;LET vMinDate = Floor(MakeDate(2020,1,1));&lt;BR /&gt;LET vMaxDate = Floor(Today());&lt;BR /&gt;LET vToday = $(vMaxDate);&lt;/P&gt;&lt;P&gt;TempCal:&lt;BR /&gt;LOAD&lt;BR /&gt;Date($(vMinDate) + RowNo() - 1) as TempDate&lt;BR /&gt;AUTOGENERATE&lt;BR /&gt;$(vMaxDate) - $(vMinDate) + 1;&lt;/P&gt;&lt;P&gt;MasterCalender:&lt;BR /&gt;Load&lt;BR /&gt;TempDate as Date,&lt;BR /&gt;Week(TempDate) as Week,&lt;BR /&gt;Year(TempDate) as Year,&lt;BR /&gt;&lt;STRONG&gt;if(Day(TempDate) &amp;lt;= 24, Month(TempDate), Month(AddMonths(TempDate,1))) as Month,&lt;/STRONG&gt;&lt;BR /&gt;Month(TempDate) as OriginalMonth&lt;BR /&gt;Resident TempCal&lt;BR /&gt;Order By TempDate ASC;&lt;/P&gt;&lt;P&gt;Drop Table TempCal;&lt;/P&gt;&lt;P&gt;In front end,&lt;/P&gt;&lt;P&gt;Dim: Month&amp;nbsp;&lt;/P&gt;&lt;P&gt;Exp: Count(users)&lt;/P&gt;</description>
      <pubDate>Fri, 13 Nov 2020 05:29:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-set-monthstart/m-p/1761403#M718356</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2020-11-13T05:29:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to set monthstart</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-set-monthstart/m-p/1761405#M718357</link>
      <description>&lt;P&gt;thank you.&lt;/P&gt;&lt;P&gt;cant we handle in set analysis?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Nov 2020 05:48:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-set-monthstart/m-p/1761405#M718357</guid>
      <dc:creator>soniasweety</dc:creator>
      <dc:date>2020-11-13T05:48:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to set monthstart</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-set-monthstart/m-p/1761407#M718358</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/18743"&gt;@soniasweety&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;If you are using Month Field as Dimension, then set analysis will not work because month will start from 1st to 31st. But in your case, month need to start from 25th .&amp;nbsp;So output won't come as expected.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Ex:&lt;/P&gt;&lt;P&gt;Month , Date, Count(users)&lt;BR /&gt;Jan, 1/1/2020, 10&lt;/P&gt;&lt;P&gt;..&lt;/P&gt;&lt;P&gt;Jan, 31/1/2020, 20&lt;/P&gt;&lt;P&gt;If you are using Month as Dim, then Jan will consider upto 31/1/2020.. Not upto 25th.&lt;/P&gt;&lt;P&gt;Hope it helps&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Nov 2020 06:06:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-set-monthstart/m-p/1761407#M718358</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2020-11-13T06:06:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to set monthstart</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-set-monthstart/m-p/1761735#M718359</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/17935"&gt;@MayilVahanan&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;thank you understood.&amp;nbsp; And working fine with your logic.&amp;nbsp;&lt;BR /&gt;but I have other date field&amp;nbsp; Date of training DOT&amp;nbsp;&amp;nbsp;&amp;nbsp; this is&amp;nbsp; considered as training completed date and completed month of it.&lt;/P&gt;&lt;P&gt;attached sample .. and expected output in text object.&lt;/P&gt;</description>
      <pubDate>Mon, 16 Nov 2020 15:07:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-set-monthstart/m-p/1761735#M718359</guid>
      <dc:creator>soniasweety</dc:creator>
      <dc:date>2020-11-16T15:07:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to set monthstart</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-set-monthstart/m-p/1761814#M718360</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/17935"&gt;@MayilVahanan&lt;/a&gt;&amp;nbsp; any suggestions ?&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/22949"&gt;@tresB&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Nov 2020 03:27:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-set-monthstart/m-p/1761814#M718360</guid>
      <dc:creator>soniasweety</dc:creator>
      <dc:date>2020-11-16T03:27:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to set monthstart</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-set-monthstart/m-p/1761815#M718361</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/18743"&gt;@soniasweety&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Try like below for your scenario.&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/t5/QlikView-Scripting/Link-2-Date-Fields-in-1-Table-to-1-Master-Calendar/td-p/84165" target="_blank"&gt;https://community.qlik.com/t5/QlikView-Scripting/Link-2-Date-Fields-in-1-Table-to-1-Master-Calendar/td-p/84165&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Nov 2020 04:00:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-set-monthstart/m-p/1761815#M718361</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2020-11-16T04:00:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to set monthstart</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-set-monthstart/m-p/1761818#M718362</link>
      <description>&lt;P&gt;Thank you&amp;nbsp; &lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/17935"&gt;@MayilVahanan&lt;/a&gt;&amp;nbsp; I will try and update you.&lt;/P&gt;</description>
      <pubDate>Mon, 16 Nov 2020 05:01:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-set-monthstart/m-p/1761818#M718362</guid>
      <dc:creator>soniasweety</dc:creator>
      <dc:date>2020-11-16T05:01:26Z</dc:date>
    </item>
  </channel>
</rss>

