<?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: Date expression query in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Date-expression-query/m-p/2484320#M101142</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/336"&gt;@Kushal_Chawda&lt;/a&gt;&amp;nbsp;. Many thanks for your reply. That works very well. Just another thing I had not realised is that I'd like to do this at the start of each month for the previous months data. So the expression would need to be for the previous months start and end days.... the monthstart and monthend would have to be for the previous month. How could i tweak the expression you gave to do this? Many thanks for your help&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 30 Sep 2024 10:46:18 GMT</pubDate>
    <dc:creator>Zub</dc:creator>
    <dc:date>2024-09-30T10:46:18Z</dc:date>
    <item>
      <title>Date expression query</title>
      <link>https://community.qlik.com/t5/App-Development/Date-expression-query/m-p/2484290#M101137</link>
      <description>&lt;P&gt;I have the following expression hardcoded for month of september:&lt;/P&gt;
&lt;P&gt;= (DueDate &amp;gt;= Date('01/09/2024') AND DueDate &amp;lt;= Date('30/09/2024'))&lt;/P&gt;
&lt;P&gt;Is there a way to make the date part dynamic so that for each month I don't have to keep changing it manually? Like for example for next month (october) I will have to manually change the expression to:&lt;/P&gt;
&lt;P&gt;= (DueDate &amp;gt;= Date('01/10/2024') AND DueDate &amp;lt;= Date('31/10/2024'))&lt;/P&gt;
&lt;P&gt;Thanks for any help&lt;/P&gt;</description>
      <pubDate>Mon, 30 Sep 2024 08:51:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Date-expression-query/m-p/2484290#M101137</guid>
      <dc:creator>Zub</dc:creator>
      <dc:date>2024-09-30T08:51:12Z</dc:date>
    </item>
    <item>
      <title>Re: Date expression query</title>
      <link>https://community.qlik.com/t5/App-Development/Date-expression-query/m-p/2484314#M101140</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/293958"&gt;@Zub&lt;/a&gt;&amp;nbsp; you can do it using today()&amp;nbsp; with monthstart() and monthend()&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;(DueDate &amp;gt;= monthstart(today()) AND DueDate &amp;lt;=monthend(today()))&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Sep 2024 10:20:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Date-expression-query/m-p/2484314#M101140</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2024-09-30T10:20:00Z</dc:date>
    </item>
    <item>
      <title>Re: Date expression query</title>
      <link>https://community.qlik.com/t5/App-Development/Date-expression-query/m-p/2484320#M101142</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/336"&gt;@Kushal_Chawda&lt;/a&gt;&amp;nbsp;. Many thanks for your reply. That works very well. Just another thing I had not realised is that I'd like to do this at the start of each month for the previous months data. So the expression would need to be for the previous months start and end days.... the monthstart and monthend would have to be for the previous month. How could i tweak the expression you gave to do this? Many thanks for your help&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Sep 2024 10:46:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Date-expression-query/m-p/2484320#M101142</guid>
      <dc:creator>Zub</dc:creator>
      <dc:date>2024-09-30T10:46:18Z</dc:date>
    </item>
    <item>
      <title>Re: Date expression query</title>
      <link>https://community.qlik.com/t5/App-Development/Date-expression-query/m-p/2484326#M101143</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/293958"&gt;@Zub&lt;/a&gt;&amp;nbsp; you can tweak it as below&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;(DueDate &amp;gt;= monthstart(addmonths(today(),-1)) AND DueDate &amp;lt;=monthend(addmonths(today(),-1)))&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Sep 2024 11:00:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Date-expression-query/m-p/2484326#M101143</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2024-09-30T11:00:55Z</dc:date>
    </item>
    <item>
      <title>Re: Date expression query</title>
      <link>https://community.qlik.com/t5/App-Development/Date-expression-query/m-p/2484328#M101144</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/336"&gt;@Kushal_Chawda&lt;/a&gt;&amp;nbsp;That works. Thx!&lt;/P&gt;</description>
      <pubDate>Mon, 30 Sep 2024 11:15:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Date-expression-query/m-p/2484328#M101144</guid>
      <dc:creator>Zub</dc:creator>
      <dc:date>2024-09-30T11:15:32Z</dc:date>
    </item>
  </channel>
</rss>

