<?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: Convert Hour to minutes in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Convert-Hour-to-minutes/m-p/2521104#M106500</link>
    <description>&lt;P&gt;Thank you for the propose.&lt;/P&gt;&lt;P&gt;This is an easy way to deal with that case as well&lt;/P&gt;</description>
    <pubDate>Fri, 13 Jun 2025 08:50:11 GMT</pubDate>
    <dc:creator>CHRIS_Singa</dc:creator>
    <dc:date>2025-06-13T08:50:11Z</dc:date>
    <item>
      <title>Convert Hour to minutes</title>
      <link>https://community.qlik.com/t5/App-Development/Convert-Hour-to-minutes/m-p/2512014#M105170</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;I would like to convert hours to minutes.&amp;nbsp;&lt;/P&gt;&lt;P&gt;How can I make this with qlik Sense (Back-end script) ?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="WORKING_HOUR.PNG" style="width: 401px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/179061i0B42276C92F02470/image-size/large?v=v2&amp;amp;px=999" role="button" title="WORKING_HOUR.PNG" alt="WORKING_HOUR.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can someone help with this issue please ?&lt;/P&gt;&lt;P&gt;Thank you in advance&lt;/P&gt;</description>
      <pubDate>Fri, 28 Mar 2025 13:41:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Convert-Hour-to-minutes/m-p/2512014#M105170</guid>
      <dc:creator>CHRIS_Singa</dc:creator>
      <dc:date>2025-03-28T13:41:51Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Hour to minutes</title>
      <link>https://community.qlik.com/t5/App-Development/Convert-Hour-to-minutes/m-p/2512095#M105175</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;You can calculate minutes by simply multiplying your hour field by 60 in the script. For example:&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;Working_Hour * 60 AS [Expected minutes]&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P class=""&gt;Here’s a sample script showing how it works:&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;LOAD 
    Ticket,
    Working_Hour,
    Working_Hour * 60 AS [Expected minutes]
INLINE [
    Ticket, Working_Hour
    1, 160.56
    2, 20.3
    3, 53.32
    4, 10.5
    5, 25.1
];&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P class=""&gt;This will give you the minutes based on your hour values.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="nhenckel_0-1743180588157.png" style="width: 362px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/179091iE1100926D7F597C7/image-dimensions/362x185?v=v2" width="362" height="185" role="button" title="nhenckel_0-1743180588157.png" alt="nhenckel_0-1743180588157.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Mar 2025 16:50:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Convert-Hour-to-minutes/m-p/2512095#M105175</guid>
      <dc:creator>nhenckel</dc:creator>
      <dc:date>2025-03-28T16:50:40Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Hour to minutes</title>
      <link>https://community.qlik.com/t5/App-Development/Convert-Hour-to-minutes/m-p/2512290#M105193</link>
      <description>&lt;P&gt;Thank you for the feedback.&amp;nbsp;&lt;/P&gt;&lt;P&gt;What can I do if iwant to view as : 9633 minutes and ..... secondes&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do you have any suggestion ?&lt;/P&gt;</description>
      <pubDate>Mon, 31 Mar 2025 07:49:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Convert-Hour-to-minutes/m-p/2512290#M105193</guid>
      <dc:creator>CHRIS_Singa</dc:creator>
      <dc:date>2025-03-31T07:49:47Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Hour to minutes</title>
      <link>https://community.qlik.com/t5/App-Development/Convert-Hour-to-minutes/m-p/2512404#M105213</link>
      <description>&lt;P&gt;You can modify above script&amp;nbsp;&lt;/P&gt;&lt;P&gt;LOAD&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; Ticket,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; Working_Hour,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; Floor(Working_Hour * 60) AS [Minutes], // Extract Whole Minutes&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; Round((Working_Hour * 60 - Floor(Working_Hour * 60)) * 60) AS [Seconds], // Extract Remaining Seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; Floor(Working_Hour * 60) &amp;amp; ' minutes and ' &amp;amp; Round((Working_Hour * 60 - Floor(Working_Hour * 60)) * 60) &amp;amp; ' seconds' AS [Formatted Time]&lt;/P&gt;&lt;P&gt;INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; Ticket, Working_Hour&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; 1, 160.56&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; 2, 20.3&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; 3, 53.32&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; 4, 10.5&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; 5, 25.1&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;</description>
      <pubDate>Mon, 31 Mar 2025 18:33:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Convert-Hour-to-minutes/m-p/2512404#M105213</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2025-03-31T18:33:53Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Hour to minutes</title>
      <link>https://community.qlik.com/t5/App-Development/Convert-Hour-to-minutes/m-p/2520945#M106481</link>
      <description>&lt;P&gt;although this question already has a solution I just wanted to propose this one as well:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MarcoWedel_1-1749674295514.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/181268i0DA458CD4161B1B0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MarcoWedel_1-1749674295514.png" alt="MarcoWedel_1-1749674295514.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2" color="#333399"&gt;table1:&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2" color="#333399"&gt;LOAD Ticket,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2" color="#333399"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; WorkingHour,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2" color="#333399"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Dual(Replace(Interval(WorkingHour/24,'mm:ss'),':',' minutes and ')&amp;amp;' seconds',WorkingHour/24) as ExpectedMinutes&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2" color="#333399"&gt;Inline [&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2" color="#333399"&gt;Ticket, WorkingHour&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2" color="#333399"&gt;1,160.56&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2" color="#333399"&gt;2,20.3&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2" color="#333399"&gt;3,53.32&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2" color="#333399"&gt;4,10.5&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2" color="#333399"&gt;5,25.1&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2" color="#333399"&gt;];&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jun 2025 20:40:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Convert-Hour-to-minutes/m-p/2520945#M106481</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2025-06-11T20:40:30Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Hour to minutes</title>
      <link>https://community.qlik.com/t5/App-Development/Convert-Hour-to-minutes/m-p/2521104#M106500</link>
      <description>&lt;P&gt;Thank you for the propose.&lt;/P&gt;&lt;P&gt;This is an easy way to deal with that case as well&lt;/P&gt;</description>
      <pubDate>Fri, 13 Jun 2025 08:50:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Convert-Hour-to-minutes/m-p/2521104#M106500</guid>
      <dc:creator>CHRIS_Singa</dc:creator>
      <dc:date>2025-06-13T08:50:11Z</dc:date>
    </item>
    <item>
      <title>Re: Convert Hour to minutes</title>
      <link>https://community.qlik.com/t5/App-Development/Convert-Hour-to-minutes/m-p/2522737#M106702</link>
      <description>&lt;P&gt;glad you liked it&lt;/P&gt;</description>
      <pubDate>Mon, 30 Jun 2025 21:13:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Convert-Hour-to-minutes/m-p/2522737#M106702</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2025-06-30T21:13:40Z</dc:date>
    </item>
  </channel>
</rss>

