<?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 round a time to the nearest minute? in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/How-round-a-time-to-the-nearest-minute/m-p/2411872#M94697</link>
    <description>&lt;P&gt;Thanks Enno86.&lt;/P&gt;
&lt;P&gt;It's not the next higher minute. It's the nearest minute. If it's 38:44:29 it should be 38:44.&lt;/P&gt;</description>
    <pubDate>Mon, 29 Jan 2024 10:14:18 GMT</pubDate>
    <dc:creator>Hans_K</dc:creator>
    <dc:date>2024-01-29T10:14:18Z</dc:date>
    <item>
      <title>How round a time to the nearest minute?</title>
      <link>https://community.qlik.com/t5/App-Development/How-round-a-time-to-the-nearest-minute/m-p/2411775#M94687</link>
      <description>&lt;P&gt;I have the following expression:&amp;nbsp;Interval(Sum(uren)/24, 'h:mm:ss')&lt;/P&gt;
&lt;P&gt;The value of Sum(uren) = 38,75&lt;/P&gt;
&lt;P&gt;The result of my expression = 38:44:59&lt;/P&gt;
&lt;P&gt;How do get the following result?: 38:45 (rounded to the nearest minute)&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jan 2024 07:25:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-round-a-time-to-the-nearest-minute/m-p/2411775#M94687</guid>
      <dc:creator>Hans_K</dc:creator>
      <dc:date>2024-01-29T07:25:56Z</dc:date>
    </item>
    <item>
      <title>Re: How round a time to the nearest minute?</title>
      <link>https://community.qlik.com/t5/App-Development/How-round-a-time-to-the-nearest-minute/m-p/2411812#M94690</link>
      <description>&lt;P&gt;38,75 should return exactly&amp;nbsp;&lt;SPAN&gt;38:45.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Maybe this works:&amp;nbsp;Interval( &lt;STRONG&gt;ROUND(&lt;/STRONG&gt; Sum(uren) &lt;STRONG&gt;, 0.01 )&lt;/STRONG&gt; /24, 'h:mm:ss')&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jan 2024 08:20:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-round-a-time-to-the-nearest-minute/m-p/2411812#M94690</guid>
      <dc:creator>ManuelRühl</dc:creator>
      <dc:date>2024-01-29T08:20:10Z</dc:date>
    </item>
    <item>
      <title>Re: How round a time to the nearest minute?</title>
      <link>https://community.qlik.com/t5/App-Development/How-round-a-time-to-the-nearest-minute/m-p/2411830#M94691</link>
      <description>&lt;P&gt;Thanks Mruehl. But the result is stil&amp;nbsp;&lt;SPAN&gt;38:44:59.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jan 2024 09:01:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-round-a-time-to-the-nearest-minute/m-p/2411830#M94691</guid>
      <dc:creator>Hans_K</dc:creator>
      <dc:date>2024-01-29T09:01:21Z</dc:date>
    </item>
    <item>
      <title>Re: How round a time to the nearest minute?</title>
      <link>https://community.qlik.com/t5/App-Development/How-round-a-time-to-the-nearest-minute/m-p/2411833#M94692</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/223137"&gt;@Hans_K&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;try this :&amp;nbsp;&lt;EM&gt;Interval(Sum(uren)/24, 'h:mm')&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;Or change the format of your measure in the vizualisation for&amp;nbsp;&lt;EM&gt;Duration&lt;/EM&gt; and change&amp;nbsp;&lt;EM&gt;'h:mm&lt;STRIKE&gt;:ss&lt;/STRIKE&gt;'&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jan 2024 09:08:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-round-a-time-to-the-nearest-minute/m-p/2411833#M94692</guid>
      <dc:creator>Pierrick</dc:creator>
      <dc:date>2024-01-29T09:08:26Z</dc:date>
    </item>
    <item>
      <title>Re: How round a time to the nearest minute?</title>
      <link>https://community.qlik.com/t5/App-Development/How-round-a-time-to-the-nearest-minute/m-p/2411838#M94693</link>
      <description>&lt;P&gt;round your result to the nearest minute?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;Interval(&lt;FONT color="#339966"&gt;round&lt;/FONT&gt;&lt;FONT color="#808000"&gt;(&lt;/FONT&gt;Sum(uren)/24,&lt;FONT color="#339966"&gt;1/(24*60)&lt;/FONT&gt;&lt;FONT color="#808000"&gt;)&lt;/FONT&gt;, 'h:mm')&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;"interval()" is just a formatting function..&amp;nbsp;&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jan 2024 09:18:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-round-a-time-to-the-nearest-minute/m-p/2411838#M94693</guid>
      <dc:creator>mikaelsc</dc:creator>
      <dc:date>2024-01-29T09:18:09Z</dc:date>
    </item>
    <item>
      <title>Re: How round a time to the nearest minute?</title>
      <link>https://community.qlik.com/t5/App-Development/How-round-a-time-to-the-nearest-minute/m-p/2411861#M94694</link>
      <description>&lt;P&gt;Thanks Pierrick, but still 38:44.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jan 2024 10:00:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-round-a-time-to-the-nearest-minute/m-p/2411861#M94694</guid>
      <dc:creator>Hans_K</dc:creator>
      <dc:date>2024-01-29T10:00:24Z</dc:date>
    </item>
    <item>
      <title>Re: How round a time to the nearest minute?</title>
      <link>https://community.qlik.com/t5/App-Development/How-round-a-time-to-the-nearest-minute/m-p/2411865#M94695</link>
      <description>&lt;P&gt;I think you need to use "ceil" as a function, in order to round to next higher minute.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jan 2024 10:10:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-round-a-time-to-the-nearest-minute/m-p/2411865#M94695</guid>
      <dc:creator>Enno86</dc:creator>
      <dc:date>2024-01-29T10:10:34Z</dc:date>
    </item>
    <item>
      <title>Re: How round a time to the nearest minute?</title>
      <link>https://community.qlik.com/t5/App-Development/How-round-a-time-to-the-nearest-minute/m-p/2411868#M94696</link>
      <description>&lt;P&gt;Thanks Mikaelsc!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The 3th column result is now 38:45. My next challenge is the total-value, that's still 38:44.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Hans_K_0-1706523061820.png" style="width: 743px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/158523iB9AF651316CB8CCA/image-dimensions/743x375?v=v2" width="743" height="375" role="button" title="Hans_K_0-1706523061820.png" alt="Hans_K_0-1706523061820.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jan 2024 10:12:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-round-a-time-to-the-nearest-minute/m-p/2411868#M94696</guid>
      <dc:creator>Hans_K</dc:creator>
      <dc:date>2024-01-29T10:12:02Z</dc:date>
    </item>
    <item>
      <title>Re: How round a time to the nearest minute?</title>
      <link>https://community.qlik.com/t5/App-Development/How-round-a-time-to-the-nearest-minute/m-p/2411872#M94697</link>
      <description>&lt;P&gt;Thanks Enno86.&lt;/P&gt;
&lt;P&gt;It's not the next higher minute. It's the nearest minute. If it's 38:44:29 it should be 38:44.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jan 2024 10:14:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-round-a-time-to-the-nearest-minute/m-p/2411872#M94697</guid>
      <dc:creator>Hans_K</dc:creator>
      <dc:date>2024-01-29T10:14:18Z</dc:date>
    </item>
    <item>
      <title>Re: How round a time to the nearest minute?</title>
      <link>https://community.qlik.com/t5/App-Development/How-round-a-time-to-the-nearest-minute/m-p/2411878#M94699</link>
      <description>&lt;P&gt;Did you try this approach:&amp;nbsp;&lt;A href="https://community.qlik.com/t5/New-to-Qlik-Sense/Round-Time-to-the-nearest-Minute/m-p/1764322/highlight/true#M175736" target="_blank"&gt;https://community.qlik.com/t5/New-to-Qlik-Sense/Round-Time-to-the-nearest-Minute/m-p/1764322/highlight/true#M175736&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jan 2024 10:22:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-round-a-time-to-the-nearest-minute/m-p/2411878#M94699</guid>
      <dc:creator>Enno86</dc:creator>
      <dc:date>2024-01-29T10:22:59Z</dc:date>
    </item>
    <item>
      <title>Re: How round a time to the nearest minute?</title>
      <link>https://community.qlik.com/t5/App-Development/How-round-a-time-to-the-nearest-minute/m-p/2411939#M94704</link>
      <description>&lt;P&gt;Thanks Enno86, i did. But it was not the solution for me.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jan 2024 11:39:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-round-a-time-to-the-nearest-minute/m-p/2411939#M94704</guid>
      <dc:creator>Hans_K</dc:creator>
      <dc:date>2024-01-29T11:39:07Z</dc:date>
    </item>
  </channel>
</rss>

