<?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 How to display Days Remaining in Current Month? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-display-Days-Remaining-in-Current-Month/m-p/74494#M771482</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Qlik Community,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This group has been very helpful, and once again, I have some questions.&amp;nbsp; This time, I want to know how to write an expression/formula to show how many days remain in current month.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example, I can dynamically show "Today" as an expression =Date(Today()), but how can I get it to also show me number of remaining days?&amp;nbsp; Including today.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The answer I'd expect the expression to return would be 10; and when I would look tomorrow, it would dynamically update to 9, and so on.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
    <dc:creator>jlakehivewyre</dc:creator>
    <dc:date>2020-11-25T16:16:04Z</dc:date>
    <item>
      <title>How to display Days Remaining in Current Month?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-display-Days-Remaining-in-Current-Month/m-p/74494#M771482</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Qlik Community,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This group has been very helpful, and once again, I have some questions.&amp;nbsp; This time, I want to know how to write an expression/formula to show how many days remain in current month.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example, I can dynamically show "Today" as an expression =Date(Today()), but how can I get it to also show me number of remaining days?&amp;nbsp; Including today.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The answer I'd expect the expression to return would be 10; and when I would look tomorrow, it would dynamically update to 9, and so on.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&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/How-to-display-Days-Remaining-in-Current-Month/m-p/74494#M771482</guid>
      <dc:creator>jlakehivewyre</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to display Days Remaining in Current Month?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-display-Days-Remaining-in-Current-Month/m-p/74495#M771484</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;= Ceil(Interval(MonthEnd(Today()) - Today(), 'd'))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2018 19:41:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-display-Days-Remaining-in-Current-Month/m-p/74495#M771484</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2018-05-22T19:41:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to display Days Remaining in Current Month?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-display-Days-Remaining-in-Current-Month/m-p/74496#M771485</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello I created a variable with the function but the idea would be this,&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;LET vData = Ceil(MonthEnd(Today()) - Today())-1;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2018 19:53:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-display-Days-Remaining-in-Current-Month/m-p/74496#M771485</guid>
      <dc:creator>giovanneb</dc:creator>
      <dc:date>2018-05-22T19:53:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to display Days Remaining in Current Month?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-display-Days-Remaining-in-Current-Month/m-p/74497#M771487</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you, this works like a charm, and outputs the correct days remaining.&amp;nbsp; I may end up creating a variable from it, so I can use it in a few different ways, but this is very helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2018 20:18:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-display-Days-Remaining-in-Current-Month/m-p/74497#M771487</guid>
      <dc:creator>jlakehivewyre</dc:creator>
      <dc:date>2018-05-22T20:18:52Z</dc:date>
    </item>
  </channel>
</rss>

