<?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 Remove Am and pm from Time Interval in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Remove-Am-and-pm-from-Time-Interval/m-p/739228#M676114</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have created a field by using&lt;/P&gt;&lt;P&gt; INTERVAL(TIMESTAMP(ReloadTime(),'hhh:mm:ss')- INTERVAL(TIMESTAMP(EvDate),'hhh:mm:ss'))&amp;nbsp; AS Trial,&lt;/P&gt;&lt;P&gt;And I believe the data is correct However, I would like to remove the AM and PM Fields, , I have attached a ss . Thank You in advance .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 Jul 2014 17:13:56 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-07-09T17:13:56Z</dc:date>
    <item>
      <title>Remove Am and pm from Time Interval</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-Am-and-pm-from-Time-Interval/m-p/739228#M676114</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have created a field by using&lt;/P&gt;&lt;P&gt; INTERVAL(TIMESTAMP(ReloadTime(),'hhh:mm:ss')- INTERVAL(TIMESTAMP(EvDate),'hhh:mm:ss'))&amp;nbsp; AS Trial,&lt;/P&gt;&lt;P&gt;And I believe the data is correct However, I would like to remove the AM and PM Fields, , I have attached a ss . Thank You in advance .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2014 17:13:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-Am-and-pm-from-Time-Interval/m-p/739228#M676114</guid>
      <dc:creator />
      <dc:date>2014-07-09T17:13:56Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Am and pm from Time Interval</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-Am-and-pm-from-Time-Interval/m-p/739229#M676115</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Perhaps a string function like subfield would work:&lt;/P&gt;&lt;P&gt;=subset(Trial,' ', 1)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2014 17:28:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-Am-and-pm-from-Time-Interval/m-p/739229#M676115</guid>
      <dc:creator />
      <dc:date>2014-07-09T17:28:30Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Am and pm from Time Interval</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-Am-and-pm-from-Time-Interval/m-p/739230#M676116</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Perhaps this might help (with formatting) of the timestamp.&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.qlikcommunity.com/thread/34152" title="http://www.qlikcommunity.com/thread/34152"&gt;Time format including AM/PM | Qlik Community&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2014 17:45:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-Am-and-pm-from-Time-Interval/m-p/739230#M676116</guid>
      <dc:creator>Greg_Williams</dc:creator>
      <dc:date>2014-07-09T17:45:36Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Remove Am and pm from Time Interval</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-Am-and-pm-from-Time-Interval/m-p/739231#M676117</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I ended up using Subfield at the script level&lt;/P&gt;&lt;P&gt;SubField(INTERVAL(TIMESTAMP(ReloadTime(),'hhh:mm:ss')- INTERVAL(TIMESTAMP(EvDate),'hhh:mm:ss')),' ',1)) &lt;/P&gt;&lt;P&gt;Which is giving me&lt;/P&gt;&lt;P&gt; &lt;IMG alt="TimeDifference2.gif" class="jive-image" src="https://community.qlik.com/legacyfs/online/62089_TimeDifference2.gif" /&gt;I am getting what I need but do you think it is the wrong way?&lt;/P&gt;&lt;P&gt;&amp;nbsp; Will I have problems doing aggregations on this, it seems to be working as of now&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2014 17:54:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-Am-and-pm-from-Time-Interval/m-p/739231#M676117</guid>
      <dc:creator />
      <dc:date>2014-07-09T17:54:11Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Am and pm from Time Interval</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-Am-and-pm-from-Time-Interval/m-p/739232#M676118</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;=interval(reloadtime() - timestamp(today()-1), 'hh:mm:ss')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=interval(reloadtime() - timestamp(EvDate), 'hh:mm:ss')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2014 17:56:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-Am-and-pm-from-Time-Interval/m-p/739232#M676118</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2014-07-09T17:56:23Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Am and pm from Time Interval</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-Am-and-pm-from-Time-Interval/m-p/739233#M676119</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Enclose your formula with &lt;STRONG&gt;Time(Your_Formula, 'hh:mm:ss'). &lt;/STRONG&gt;This way your time data will be displayed just in hours, minutes and seconds disregarding the AM/PM,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2014 18:04:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-Am-and-pm-from-Time-Interval/m-p/739233#M676119</guid>
      <dc:creator>jaimeaguilar</dc:creator>
      <dc:date>2014-07-09T18:04:20Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Am and pm from Time Interval</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-Am-and-pm-from-Time-Interval/m-p/739234#M676120</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That Worked perfectly Thank You so much!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2014 18:11:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-Am-and-pm-from-Time-Interval/m-p/739234#M676120</guid>
      <dc:creator />
      <dc:date>2014-07-09T18:11:06Z</dc:date>
    </item>
  </channel>
</rss>

