<?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: Need unique values from time field in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Need-unique-values-from-time-field/m-p/1927472#M76374</link>
    <description>&lt;P&gt;load distinct hour(&lt;SPAN&gt;Time(DateTime) ) as DateTimeIntervals&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 06 May 2022 19:16:37 GMT</pubDate>
    <dc:creator>vinieme12</dc:creator>
    <dc:date>2022-05-06T19:16:37Z</dc:date>
    <item>
      <title>Need unique values from time field</title>
      <link>https://community.qlik.com/t5/App-Development/Need-unique-values-from-time-field/m-p/1927468#M76371</link>
      <description>&lt;P&gt;We are extracting time intervals from a timestamp field. We would like to use this as a filter but the values are repeating. We only need a list of intervals from 12:00 am to 11:30 pm, so the list should only be 24 values.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Load script currently:&amp;nbsp; Time(DateTime) as DateTimeIntervals&lt;/P&gt;</description>
      <pubDate>Fri, 06 May 2022 19:00:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Need-unique-values-from-time-field/m-p/1927468#M76371</guid>
      <dc:creator>allann</dc:creator>
      <dc:date>2022-05-06T19:00:09Z</dc:date>
    </item>
    <item>
      <title>Re: Need unique values from time field</title>
      <link>https://community.qlik.com/t5/App-Development/Need-unique-values-from-time-field/m-p/1927472#M76374</link>
      <description>&lt;P&gt;load distinct hour(&lt;SPAN&gt;Time(DateTime) ) as DateTimeIntervals&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 06 May 2022 19:16:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Need-unique-values-from-time-field/m-p/1927472#M76374</guid>
      <dc:creator>vinieme12</dc:creator>
      <dc:date>2022-05-06T19:16:37Z</dc:date>
    </item>
    <item>
      <title>Re: Need unique values from time field</title>
      <link>https://community.qlik.com/t5/App-Development/Need-unique-values-from-time-field/m-p/1927482#M76375</link>
      <description>&lt;P&gt;seems like that's the right track, but it gives me 0 to 23. actually the intervals are 30 min so the list should be 48 values.&lt;/P&gt;
&lt;P&gt;i need it to show:&lt;/P&gt;
&lt;P&gt;12:00 am&lt;/P&gt;
&lt;P&gt;12:30 am&lt;/P&gt;
&lt;P&gt;1:00 am&lt;/P&gt;
&lt;P&gt;1:30 am and so on&lt;/P&gt;</description>
      <pubDate>Fri, 06 May 2022 19:37:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Need-unique-values-from-time-field/m-p/1927482#M76375</guid>
      <dc:creator>allann</dc:creator>
      <dc:date>2022-05-06T19:37:44Z</dc:date>
    </item>
    <item>
      <title>Re: Need unique values from time field</title>
      <link>https://community.qlik.com/t5/App-Development/Need-unique-values-from-time-field/m-p/1927485#M76376</link>
      <description>&lt;P&gt;this means your field have values that are more granular.&amp;nbsp; remember time is a dual, the number portion may be more granular than what you are displaying that may be why you are seeing duplicates though its not really dups as the number is different.&amp;nbsp; you may want to create a new field that is rounded off to the time intervals you need&lt;/P&gt;</description>
      <pubDate>Fri, 06 May 2022 19:52:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Need-unique-values-from-time-field/m-p/1927485#M76376</guid>
      <dc:creator>edwin</dc:creator>
      <dc:date>2022-05-06T19:52:27Z</dc:date>
    </item>
    <item>
      <title>Re: Need unique values from time field</title>
      <link>https://community.qlik.com/t5/App-Development/Need-unique-values-from-time-field/m-p/1927487#M76377</link>
      <description>&lt;P&gt;that's what i was wondering. it didn't make sense to me that they weren't aggregating. let me look in to that.&lt;/P&gt;</description>
      <pubDate>Fri, 06 May 2022 19:56:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Need-unique-values-from-time-field/m-p/1927487#M76377</guid>
      <dc:creator>allann</dc:creator>
      <dc:date>2022-05-06T19:56:01Z</dc:date>
    </item>
    <item>
      <title>Re: Need unique values from time field</title>
      <link>https://community.qlik.com/t5/App-Development/Need-unique-values-from-time-field/m-p/1927508#M76379</link>
      <description>&lt;LI-CODE lang="markup"&gt;Time(Floor(DateTime,'00:30:00')) as DateTimeIntervals&lt;/LI-CODE&gt;
&lt;P&gt;or&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Time(Floor(DateTime,1/48)) as DateTimeIntervals&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 06 May 2022 21:03:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Need-unique-values-from-time-field/m-p/1927508#M76379</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2022-05-06T21:03:32Z</dc:date>
    </item>
    <item>
      <title>Re: Need unique values from time field</title>
      <link>https://community.qlik.com/t5/App-Development/Need-unique-values-from-time-field/m-p/1927569#M76384</link>
      <description>&lt;P&gt;you maybe have to purge the date part using frac() as well:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Time(Floor(Frac(DateTime),1/48)) as DateTimeIntervals&lt;/LI-CODE&gt;</description>
      <pubDate>Sat, 07 May 2022 09:30:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Need-unique-values-from-time-field/m-p/1927569#M76384</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2022-05-07T09:30:13Z</dc:date>
    </item>
    <item>
      <title>Re: Need unique values from time field</title>
      <link>https://community.qlik.com/t5/App-Development/Need-unique-values-from-time-field/m-p/1928172#M76437</link>
      <description>&lt;P&gt;thanks, this is what i was looking for!&lt;/P&gt;</description>
      <pubDate>Mon, 09 May 2022 18:23:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Need-unique-values-from-time-field/m-p/1928172#M76437</guid>
      <dc:creator>allann</dc:creator>
      <dc:date>2022-05-09T18:23:25Z</dc:date>
    </item>
    <item>
      <title>Re: Need unique values from time field</title>
      <link>https://community.qlik.com/t5/App-Development/Need-unique-values-from-time-field/m-p/1928743#M76471</link>
      <description>&lt;P&gt;Maybe I spoke to soon. It's working but when I choose an interval like 9:30PM, I'm seeing 9:30PM and 10PM.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 May 2022 17:44:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Need-unique-values-from-time-field/m-p/1928743#M76471</guid>
      <dc:creator>allann</dc:creator>
      <dc:date>2022-05-10T17:44:02Z</dc:date>
    </item>
    <item>
      <title>Re: Need unique values from time field</title>
      <link>https://community.qlik.com/t5/App-Development/Need-unique-values-from-time-field/m-p/1928833#M76475</link>
      <description>&lt;P&gt;please post some sample data that shows this effect&lt;/P&gt;</description>
      <pubDate>Tue, 10 May 2022 20:56:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Need-unique-values-from-time-field/m-p/1928833#M76475</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2022-05-10T20:56:24Z</dc:date>
    </item>
    <item>
      <title>Re: Need unique values from time field</title>
      <link>https://community.qlik.com/t5/App-Development/Need-unique-values-from-time-field/m-p/1928837#M76476</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="Screenshot 2022-05-10 170527.png" style="width: 391px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/79119i629B7939B179FF17/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2022-05-10 170527.png" alt="Screenshot 2022-05-10 170527.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 10 May 2022 21:06:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Need-unique-values-from-time-field/m-p/1928837#M76476</guid>
      <dc:creator>allann</dc:creator>
      <dc:date>2022-05-10T21:06:37Z</dc:date>
    </item>
    <item>
      <title>Re: Need unique values from time field</title>
      <link>https://community.qlik.com/t5/App-Development/Need-unique-values-from-time-field/m-p/1929922#M76567</link>
      <description>&lt;P&gt;replacing frac with num corrects the interval issue but it repeats again.&lt;/P&gt;</description>
      <pubDate>Thu, 12 May 2022 15:29:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Need-unique-values-from-time-field/m-p/1929922#M76567</guid>
      <dc:creator>allann</dc:creator>
      <dc:date>2022-05-12T15:29:19Z</dc:date>
    </item>
  </channel>
</rss>

