<?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 Time interval with seperate values in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Time-interval-with-seperate-values/m-p/132419#M756369</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello.&lt;/P&gt;&lt;P&gt;Is there any chance to get data from two time set. I have table1 that contain times. Then I have another table2 that contains both times and measured values. Now I need to get those measured values somehow so first I get one timestamp from table1 and then compare timestamps with table2. So I need to get values from table2 plus minus 2 minutes compared to table1.&lt;/P&gt;&lt;P&gt;Pretty hard to explain this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Timo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
    <dc:creator>tka_ovako</dc:creator>
    <dc:date>2020-11-25T16:16:04Z</dc:date>
    <item>
      <title>Time interval with seperate values</title>
      <link>https://community.qlik.com/t5/QlikView/Time-interval-with-seperate-values/m-p/132419#M756369</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello.&lt;/P&gt;&lt;P&gt;Is there any chance to get data from two time set. I have table1 that contain times. Then I have another table2 that contains both times and measured values. Now I need to get those measured values somehow so first I get one timestamp from table1 and then compare timestamps with table2. So I need to get values from table2 plus minus 2 minutes compared to table1.&lt;/P&gt;&lt;P&gt;Pretty hard to explain this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Timo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Time-interval-with-seperate-values/m-p/132419#M756369</guid>
      <dc:creator>tka_ovako</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Time interval with seperate values</title>
      <link>https://community.qlik.com/t5/QlikView/Time-interval-with-seperate-values/m-p/132420#M756370</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Load your table one and create intervals plus minus 2 minutes for each timestamp:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Timestamp,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (Timestamp - Maketime(0,2)) as RangeStart,&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (Timestamp + Maketime(0,2)) as RangeEnd&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;FROM Table1;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Then use IntervalMatch() to match the Table2 Timestamps into the ranges.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Sep 2018 11:24:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Time-interval-with-seperate-values/m-p/132420#M756370</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2018-09-17T11:24:42Z</dc:date>
    </item>
    <item>
      <title>Re: Time interval with seperate values</title>
      <link>https://community.qlik.com/t5/QlikView/Time-interval-with-seperate-values/m-p/132421#M756371</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Timo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use intervalmatch to match the timestamp from table 1 to table 2 values.&lt;/P&gt;&lt;P&gt;Table 1 needs to have a start and end timestamp so the table 2 value can be matched.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See &lt;A href="https://help.qlik.com/en-US/qlikview/November2017/Subsystems/Client/Content/Scripting/ScriptPrefixes/IntervalMatch.htm" title="https://help.qlik.com/en-US/qlikview/November2017/Subsystems/Client/Content/Scripting/ScriptPrefixes/IntervalMatch.htm"&gt;https://help.qlik.com/en-US/qlikview/November2017/Subsystems/Client/Content/Scripting/ScriptPrefixes/IntervalMatch.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;for example on how to use it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Felipe.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Sep 2018 11:52:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Time-interval-with-seperate-values/m-p/132421#M756371</guid>
      <dc:creator>felipedl</dc:creator>
      <dc:date>2018-09-17T11:52:33Z</dc:date>
    </item>
  </channel>
</rss>

