<?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 create countdown timer - repetitive on monthly basis? in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/How-to-create-countdown-timer-repetitive-on-monthly-basis/m-p/2092469#M89540</link>
    <description>&lt;P&gt;Hi everyone,&lt;/P&gt;
&lt;P&gt;I want to create a timer that shows each month how much time is left until the 7th of the next month, probably using variables.&lt;/P&gt;
&lt;P&gt;So for example if now() = 11/Jul/2023 11:00, until 7th of the next month (07/Aug/2023 00:00) I have 26 days and 13hours&amp;nbsp; left = &lt;STRONG&gt;637h and 0 minutes.&lt;/STRONG&gt;&amp;nbsp;I want this value to be presented in text or KPI object for example, and&lt;STRONG&gt; to be repetitive each month&lt;/STRONG&gt;. So after 7th August, it will count down until 7th September. Basically, the range period is between 7th of the 2 months.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks in advance for your help!&lt;/P&gt;</description>
    <pubDate>Tue, 11 Jul 2023 09:34:07 GMT</pubDate>
    <dc:creator>Lazar1</dc:creator>
    <dc:date>2023-07-11T09:34:07Z</dc:date>
    <item>
      <title>How to create countdown timer - repetitive on monthly basis?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-create-countdown-timer-repetitive-on-monthly-basis/m-p/2092469#M89540</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;
&lt;P&gt;I want to create a timer that shows each month how much time is left until the 7th of the next month, probably using variables.&lt;/P&gt;
&lt;P&gt;So for example if now() = 11/Jul/2023 11:00, until 7th of the next month (07/Aug/2023 00:00) I have 26 days and 13hours&amp;nbsp; left = &lt;STRONG&gt;637h and 0 minutes.&lt;/STRONG&gt;&amp;nbsp;I want this value to be presented in text or KPI object for example, and&lt;STRONG&gt; to be repetitive each month&lt;/STRONG&gt;. So after 7th August, it will count down until 7th September. Basically, the range period is between 7th of the 2 months.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks in advance for your help!&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jul 2023 09:34:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-create-countdown-timer-repetitive-on-monthly-basis/m-p/2092469#M89540</guid>
      <dc:creator>Lazar1</dc:creator>
      <dc:date>2023-07-11T09:34:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to create countdown timer - repetitive on monthly basis?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-create-countdown-timer-repetitive-on-monthly-basis/m-p/2092487#M89545</link>
      <description>&lt;P&gt;Try this as the expressin for the KPI:&lt;/P&gt;
&lt;P&gt;Interval(&lt;BR /&gt;If(Day(Today(1)) &amp;lt;= 7,MakeDate(Year(AddMonths(Today(1),0)),Num(Month(AddMonths(Today(1),0))),7), MakeDate(Year(AddMonths(Today(1),1)),Num(Month(AddMonths(Today(1),1))),7))&lt;BR /&gt;-&lt;BR /&gt;Now(1)&lt;BR /&gt;,'D hh') &amp;amp; ' D hh'&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jul 2023 10:13:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-create-countdown-timer-repetitive-on-monthly-basis/m-p/2092487#M89545</guid>
      <dc:creator>vupen</dc:creator>
      <dc:date>2023-07-11T10:13:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to create countdown timer - repetitive on monthly basis?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-create-countdown-timer-repetitive-on-monthly-basis/m-p/2092488#M89546</link>
      <description>&lt;P&gt;AddMonths(MonthStart(Now()),1) + 6 - Now() would get you the time left to the 7th of the &lt;STRONG&gt;next&lt;/STRONG&gt; month.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want this to be the nearest 7th of a month (i.e. if today is the fifth, there are two days left), the easiest way is probably to add an if statement:&lt;/P&gt;
&lt;P&gt;If(Day(Today() &amp;lt; 7, MakeDate(Year(Now(),Month(Now(),7) - Now(), AddMonths(MonthStart(Now()),1) + 6 - Now())&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jul 2023 10:14:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-create-countdown-timer-repetitive-on-monthly-basis/m-p/2092488#M89546</guid>
      <dc:creator>Or</dc:creator>
      <dc:date>2023-07-11T10:14:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to create countdown timer - repetitive on monthly basis?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-create-countdown-timer-repetitive-on-monthly-basis/m-p/2092639#M89561</link>
      <description>&lt;P&gt;This formula gives me an error: Month takes 1 parametar&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jul 2023 14:13:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-create-countdown-timer-repetitive-on-monthly-basis/m-p/2092639#M89561</guid>
      <dc:creator>Lazar1</dc:creator>
      <dc:date>2023-07-11T14:13:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to create countdown timer - repetitive on monthly basis?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-create-countdown-timer-repetitive-on-monthly-basis/m-p/2092641#M89562</link>
      <description>&lt;P&gt;This works fine, thanks!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jul 2023 14:15:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-create-countdown-timer-repetitive-on-monthly-basis/m-p/2092641#M89562</guid>
      <dc:creator>Lazar1</dc:creator>
      <dc:date>2023-07-11T14:15:27Z</dc:date>
    </item>
  </channel>
</rss>

