<?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: Display ReloadTime as a substraction with the last ReloadTime as a String in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Display-ReloadTime-as-a-substraction-with-the-last-ReloadTime-as/m-p/1975268#M1220707</link>
    <description>&lt;P&gt;There aren't any built-in functions to translate an interval into an language-specific text representation such as "Two days, five hours, seventeen minutes and three seconds". You can format an interval along the lines of 'D:hh:mm:ss' though.&lt;/P&gt;</description>
    <pubDate>Wed, 31 Aug 2022 10:33:15 GMT</pubDate>
    <dc:creator>Or</dc:creator>
    <dc:date>2022-08-31T10:33:15Z</dc:date>
    <item>
      <title>Display ReloadTime as a substraction with the last ReloadTime as a String</title>
      <link>https://community.qlik.com/t5/QlikView/Display-ReloadTime-as-a-substraction-with-the-last-ReloadTime-as/m-p/1975163#M1220702</link>
      <description>&lt;P&gt;Hello Qlik developers,&lt;/P&gt;
&lt;P&gt;I know more or less how ReloadTime works and how it displays it. But I want to show something like: Last Reload Time was 5 minutes ago, or 2h and 35 mins ago... instead of the usual Date format it displays.&lt;/P&gt;
&lt;P&gt;Is this possible?&lt;/P&gt;
&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Wed, 31 Aug 2022 08:24:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Display-ReloadTime-as-a-substraction-with-the-last-ReloadTime-as/m-p/1975163#M1220702</guid>
      <dc:creator>Diego_780</dc:creator>
      <dc:date>2022-08-31T08:24:21Z</dc:date>
    </item>
    <item>
      <title>Re: Display ReloadTime as a substraction with the last ReloadTime as a String</title>
      <link>https://community.qlik.com/t5/QlikView/Display-ReloadTime-as-a-substraction-with-the-last-ReloadTime-as/m-p/1975198#M1220704</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can try to use an expression like (interval(now() - ReloadTime()))&lt;/P&gt;
&lt;P&gt;example:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="amartinez35_0-1661935866737.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/87924iEC7505801208684B/image-size/large?v=v2&amp;amp;px=999" role="button" title="amartinez35_0-1661935866737.png" alt="amartinez35_0-1661935866737.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Aurélien&lt;/P&gt;</description>
      <pubDate>Wed, 31 Aug 2022 08:51:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Display-ReloadTime-as-a-substraction-with-the-last-ReloadTime-as/m-p/1975198#M1220704</guid>
      <dc:creator>Aurelien_Martinez</dc:creator>
      <dc:date>2022-08-31T08:51:36Z</dc:date>
    </item>
    <item>
      <title>Re: Display ReloadTime as a substraction with the last ReloadTime as a String</title>
      <link>https://community.qlik.com/t5/QlikView/Display-ReloadTime-as-a-substraction-with-the-last-ReloadTime-as/m-p/1975260#M1220706</link>
      <description>&lt;P&gt;Hi thanks for the response!&lt;/P&gt;
&lt;P&gt;It does work but can it also be applied for days? I mean, if its more than a day, the hour should be something like 24 or more. Is there a function to solve this or should I just use a If clause as to substract when it pass 24 and put a 1 or something like that?&lt;/P&gt;
&lt;P&gt;I have this for hours and minutes:&lt;/P&gt;
&lt;P&gt;= 'Actualizado hace ' &amp;amp; &lt;BR /&gt;If(Hour(Interval(Now() - ReloadTime())) &amp;gt; 0, Hour(Interval(Now() - ReloadTime())) &amp;amp; ' h y ' &amp;amp; Minute(Interval(Now() - ReloadTime())) &amp;amp;' min',&lt;BR /&gt;Minute(Interval(Now() - ReloadTime())) &amp;amp;' min')&lt;/P&gt;
&lt;P&gt;And this is what it shows (I guess it will still work if there are hours):&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="DiegoFraj_0-1661940194780.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/87940i49772BC3BF5D6246/image-size/medium?v=v2&amp;amp;px=400" role="button" title="DiegoFraj_0-1661940194780.png" alt="DiegoFraj_0-1661940194780.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 31 Aug 2022 10:04:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Display-ReloadTime-as-a-substraction-with-the-last-ReloadTime-as/m-p/1975260#M1220706</guid>
      <dc:creator>Diego_780</dc:creator>
      <dc:date>2022-08-31T10:04:01Z</dc:date>
    </item>
    <item>
      <title>Re: Display ReloadTime as a substraction with the last ReloadTime as a String</title>
      <link>https://community.qlik.com/t5/QlikView/Display-ReloadTime-as-a-substraction-with-the-last-ReloadTime-as/m-p/1975268#M1220707</link>
      <description>&lt;P&gt;There aren't any built-in functions to translate an interval into an language-specific text representation such as "Two days, five hours, seventeen minutes and three seconds". You can format an interval along the lines of 'D:hh:mm:ss' though.&lt;/P&gt;</description>
      <pubDate>Wed, 31 Aug 2022 10:33:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Display-ReloadTime-as-a-substraction-with-the-last-ReloadTime-as/m-p/1975268#M1220707</guid>
      <dc:creator>Or</dc:creator>
      <dc:date>2022-08-31T10:33:15Z</dc:date>
    </item>
    <item>
      <title>Re: Display ReloadTime as a substraction with the last ReloadTime as a String</title>
      <link>https://community.qlik.com/t5/QlikView/Display-ReloadTime-as-a-substraction-with-the-last-ReloadTime-as/m-p/1975273#M1220708</link>
      <description>&lt;P&gt;I tied to add second parameter like 'd h m s' and I think that display day hour minute second&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Interval((now()) - ReloadTime(), 'd h m s')&lt;/P&gt;</description>
      <pubDate>Wed, 31 Aug 2022 10:27:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Display-ReloadTime-as-a-substraction-with-the-last-ReloadTime-as/m-p/1975273#M1220708</guid>
      <dc:creator>Aurelien_Martinez</dc:creator>
      <dc:date>2022-08-31T10:27:38Z</dc:date>
    </item>
    <item>
      <title>Re: Display ReloadTime as a substraction with the last ReloadTime as a String</title>
      <link>https://community.qlik.com/t5/QlikView/Display-ReloadTime-as-a-substraction-with-the-last-ReloadTime-as/m-p/1979119#M1220918</link>
      <description>&lt;P&gt;Sorry I have a last thing, I don´t know if it has a solution or not, but I use this expression with minute (= Minute(interval(now() - ReloadTime())) &amp;amp; ' minutes') on the object that reloads your app, so when I push the button, it reloads the app, but instead of showing me 0 minutes, it shows me 59 minutes. If I F5 the page at the instant it will show correctly the 0 minute, but only if i refresh.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="DiegoFraj_0-1662711314030.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/88780i92548BB9265986D8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="DiegoFraj_0-1662711314030.png" alt="DiegoFraj_0-1662711314030.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Green means it just refreshed cuz I pushed the button.&lt;/P&gt;
&lt;P&gt;I kinda know why could it happen but I don´t know how to solve this, Can I add like 1 or 2 seconds? Or is this not the solution.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Fri, 09 Sep 2022 08:15:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Display-ReloadTime-as-a-substraction-with-the-last-ReloadTime-as/m-p/1979119#M1220918</guid>
      <dc:creator>Diego_780</dc:creator>
      <dc:date>2022-09-09T08:15:49Z</dc:date>
    </item>
  </channel>
</rss>

