<?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: Use Greater and less than function in Qlikview in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Use-Greater-and-less-than-function-in-Qlikview/m-p/974969#M1296008</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me on this&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 11 Nov 2015 09:46:42 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-11-11T09:46:42Z</dc:date>
    <item>
      <title>Use Greater and less than function in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Use-Greater-and-less-than-function-in-Qlikview/m-p/974964#M1296000</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to create a chart for employees come to time and go on time.&lt;/P&gt;&lt;P&gt;One of the tables have columns name , IN_TIME ,OUT_TIME, DELAY&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to write a expression for employees who are coming between 8 AM to 9 AM&amp;nbsp; and going between 3 PM to 4 PM, They are coming on Time.&lt;/P&gt;&lt;P&gt;For IN_TIME &amp;gt;=8 and &amp;lt;=9 Comes early&lt;/P&gt;&lt;P&gt;OUT_TIME &amp;gt;=3 PM and 4 PM Going on time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me writing the expression and also assist me that which graph should i use for this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Jan 2026 18:19:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Use-Greater-and-less-than-function-in-Qlikview/m-p/974964#M1296000</guid>
      <dc:creator />
      <dc:date>2026-01-26T18:19:17Z</dc:date>
    </item>
    <item>
      <title>Re: Use Greater and less than function in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Use-Greater-and-less-than-function-in-Qlikview/m-p/974965#M1296002</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try something like&lt;/P&gt;&lt;P&gt;Count({&amp;lt;IN_TIME={'&amp;gt;=8&amp;lt;=9)'},OUT_TIME={'&amp;gt;=3&amp;lt;=4'}&amp;gt;}&lt;/P&gt;&lt;P&gt;instead of numbers 8,9 etc. use your timeformat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Nov 2015 08:01:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Use-Greater-and-less-than-function-in-Qlikview/m-p/974965#M1296002</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-11T08:01:47Z</dc:date>
    </item>
    <item>
      <title>Re: Use Greater and less than function in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Use-Greater-and-less-than-function-in-Qlikview/m-p/974966#M1296005</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what is format of IN_TIME &amp;amp; OUT_TIME&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Nov 2015 08:04:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Use-Greater-and-less-than-function-in-Qlikview/m-p/974966#M1296005</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2015-11-11T08:04:24Z</dc:date>
    </item>
    <item>
      <title>Re: Use Greater and less than function in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Use-Greater-and-less-than-function-in-Qlikview/m-p/974967#M1296006</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are the &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;IN_TIME and OUT_TIME fields normal QV time fields (numeric, between 0 and 1 in value)? If they are, then the expression could be:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If(I&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;N_TIME &amp;gt;= Time#('08:00') And IN_TIME &amp;lt;= Time#('09:00'), 'Comes early') As EarlyFlag,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;If(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;OUT_TIME &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&amp;gt;= Time#('15:00') And &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;OUT_TIME &lt;/SPAN&gt;&amp;lt;= Time#('16:00'), 'Comes early') As EarlyFlag,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note that Time#(08:00) is equivalent to the value 8/24, formatted as a time.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Nov 2015 08:08:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Use-Greater-and-less-than-function-in-Qlikview/m-p/974967#M1296006</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2015-11-11T08:08:10Z</dc:date>
    </item>
    <item>
      <title>Re: Use Greater and less than function in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Use-Greater-and-less-than-function-in-Qlikview/m-p/974968#M1296007</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;I used the below expression but no output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Count({&amp;lt;IN_TIME={"&amp;gt;=1900-01-01 08:00:00.000&amp;lt;=1900-01-01 09:00:00.000"},OUT_IIME={"1900-01-01 15:00:00.000&amp;lt;=1900-01-01 16:00:00.000"}&amp;gt;} [IN_TIME])&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using straight table.&lt;/P&gt;&lt;P&gt;It has 2 columns name , on_time&lt;/P&gt;&lt;P&gt;Time Format &lt;SPAN style="font-size: 13.3333px;"&gt;1900-01-01 08:00:00.000 &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please suggest&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Nov 2015 08:42:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Use-Greater-and-less-than-function-in-Qlikview/m-p/974968#M1296007</guid>
      <dc:creator />
      <dc:date>2015-11-11T08:42:29Z</dc:date>
    </item>
    <item>
      <title>Re: Use Greater and less than function in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Use-Greater-and-less-than-function-in-Qlikview/m-p/974969#M1296008</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me on this&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Nov 2015 09:46:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Use-Greater-and-less-than-function-in-Qlikview/m-p/974969#M1296008</guid>
      <dc:creator />
      <dc:date>2015-11-11T09:46:42Z</dc:date>
    </item>
    <item>
      <title>Re: Use Greater and less than function in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Use-Greater-and-less-than-function-in-Qlikview/m-p/974970#M1296009</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;for use in Expression you should provide a field only with timeformat&lt;/P&gt;&lt;P&gt;define in script:&lt;/P&gt;&lt;P&gt;time(IN_TIME,'hh:mm') as IN_TIME_H&lt;/P&gt;&lt;P&gt;time(OUT_TIME,'hh:mm') as OUT_TIME_H&lt;/P&gt;&lt;P&gt;then you can try the Expression&lt;/P&gt;&lt;P&gt;Count({&amp;lt;IN_TIME_H={"&amp;gt;=$(=time('08:00'))&amp;lt;=$(=time('09:00')"},OUT_TIME_H={"&amp;gt;=$(=time('15:00'))&amp;lt;=$(=time('16:00')"}&amp;gt;} [IN_TIME])&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Nov 2015 10:07:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Use-Greater-and-less-than-function-in-Qlikview/m-p/974970#M1296009</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-11T10:07:07Z</dc:date>
    </item>
    <item>
      <title>Re: Use Greater and less than function in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Use-Greater-and-less-than-function-in-Qlikview/m-p/974971#M1296010</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;not working.. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Nov 2015 10:26:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Use-Greater-and-less-than-function-in-Qlikview/m-p/974971#M1296010</guid>
      <dc:creator />
      <dc:date>2015-11-11T10:26:16Z</dc:date>
    </item>
    <item>
      <title>Re: Use Greater and less than function in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Use-Greater-and-less-than-function-in-Qlikview/m-p/974972#M1296011</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can you send example app?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Nov 2015 12:34:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Use-Greater-and-less-than-function-in-Qlikview/m-p/974972#M1296011</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-11T12:34:16Z</dc:date>
    </item>
    <item>
      <title>Re: Use Greater and less than function in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Use-Greater-and-less-than-function-in-Qlikview/m-p/974973#M1296012</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Those should be Time#() fucntions:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Count({&amp;lt;IN_TIME_H={"&amp;gt;=$(=time#('08:00'))&amp;lt;=$(=time#('09:00')"},OUT_TIME_H={"&amp;gt;=$(=time#('15:00'))&amp;lt;=$(=time#('16:00')"}&amp;gt;} [IN_TIME])&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;,,,and this assume a 24 hour clock.If you are using a 12 hour clock, then use &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;time#('03:00pm') &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;..or specify the format&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;time#('15:00', 'hh:mm') or &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;time#('03:00pm', 'hh:mmtt') &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Nov 2015 12:53:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Use-Greater-and-less-than-function-in-Qlikview/m-p/974973#M1296012</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2015-11-11T12:53:52Z</dc:date>
    </item>
    <item>
      <title>Re: Use Greater and less than function in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Use-Greater-and-less-than-function-in-Qlikview/m-p/974974#M1296013</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First i was not getting any output i tried i again,&lt;/P&gt;&lt;P&gt;I am getting a below error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Count({&amp;lt;IN_TIME_H={"&amp;gt;=$(=time('08:00'))&amp;lt;=$(=time('09:00')"},OUT_TIME_H={"&amp;gt;=$(=time('15:00'))&amp;lt;=$(=time('16:00')"}&amp;gt;} [IN_TIME])&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;error in set modifier ad hoc element list.I have attached the screenshot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Nov 2015 12:54:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Use-Greater-and-less-than-function-in-Qlikview/m-p/974974#M1296013</guid>
      <dc:creator />
      <dc:date>2015-11-11T12:54:37Z</dc:date>
    </item>
    <item>
      <title>Re: Use Greater and less than function in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Use-Greater-and-less-than-function-in-Qlikview/m-p/974975#M1296014</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;something was wrong with brackets&lt;/P&gt;&lt;P&gt;i tried this expresson and didnot get error message&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Count&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;({&amp;lt;IN_TIME_H={&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;"&amp;gt;=$(=time('08:00'))&amp;lt;=$(=time('09:00'))"&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;},OUT_TIME_H={&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;"&amp;gt;=$(=time('15:00'))&amp;lt;=$(=time('16:00'))"&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;}&amp;gt;} &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[IN_TIME_H]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Nov 2015 13:13:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Use-Greater-and-less-than-function-in-Qlikview/m-p/974975#M1296014</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-11T13:13:59Z</dc:date>
    </item>
    <item>
      <title>Re: Use Greater and less than function in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Use-Greater-and-less-than-function-in-Qlikview/m-p/974976#M1296015</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now i am not getting any error. but no output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;using the below.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;=Count({&amp;lt;IN_TIME_H={"&amp;gt;=$(=time('08:00'))&amp;lt;=$(=time('09:00'))"},OUT_TIME_H={"&amp;gt;=$(=time('15:00'))&amp;lt;=$(=time('16:00'))"}&amp;gt;} [IN_TIME_H])&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;I guess the problem with IN_TIME data from sql server.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Thanks&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Nov 2015 13:32:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Use-Greater-and-less-than-function-in-Qlikview/m-p/974976#M1296015</guid>
      <dc:creator />
      <dc:date>2015-11-11T13:32:24Z</dc:date>
    </item>
    <item>
      <title>Re: Use Greater and less than function in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Use-Greater-and-less-than-function-in-Qlikview/m-p/974977#M1296016</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i think that the Problem is the timeformat. Qlikview is very severe with that&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Nov 2015 13:47:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Use-Greater-and-less-than-function-in-Qlikview/m-p/974977#M1296016</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-11T13:47:36Z</dc:date>
    </item>
    <item>
      <title>Re: Use Greater and less than function in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Use-Greater-and-less-than-function-in-Qlikview/m-p/974978#M1296017</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;I changed the time format in sql server to HH:MM:SS and now its working fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for all the help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Nov 2015 11:58:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Use-Greater-and-less-than-function-in-Qlikview/m-p/974978#M1296017</guid>
      <dc:creator />
      <dc:date>2015-11-12T11:58:31Z</dc:date>
    </item>
  </channel>
</rss>

