<?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 expression indicator in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/expression-indicator/m-p/1179782#M382501</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 would like to make a condition :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF(MIN_DATE_DEB &amp;gt; time('08:30:00','hh:mm:ss'),'qmem://&amp;lt;bundled&amp;gt;/BuiltIn/plus_g.png',&lt;/P&gt;&lt;P&gt;IF(MIN_DATE_DEB &amp;lt;= time('08:30:00','hh:mm:ss'),'qmem://&amp;lt;bundled&amp;gt;/BuiltIn/smiley2_b.png'))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it seems that it didn't work because I get one picture for all cases.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea please?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 09 Sep 2016 16:05:53 GMT</pubDate>
    <dc:creator>master_student</dc:creator>
    <dc:date>2016-09-09T16:05:53Z</dc:date>
    <item>
      <title>expression indicator</title>
      <link>https://community.qlik.com/t5/QlikView/expression-indicator/m-p/1179782#M382501</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 would like to make a condition :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF(MIN_DATE_DEB &amp;gt; time('08:30:00','hh:mm:ss'),'qmem://&amp;lt;bundled&amp;gt;/BuiltIn/plus_g.png',&lt;/P&gt;&lt;P&gt;IF(MIN_DATE_DEB &amp;lt;= time('08:30:00','hh:mm:ss'),'qmem://&amp;lt;bundled&amp;gt;/BuiltIn/smiley2_b.png'))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it seems that it didn't work because I get one picture for all cases.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea please?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Sep 2016 16:05:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/expression-indicator/m-p/1179782#M382501</guid>
      <dc:creator>master_student</dc:creator>
      <dc:date>2016-09-09T16:05:53Z</dc:date>
    </item>
    <item>
      <title>Re: expression indicator</title>
      <link>https://community.qlik.com/t5/QlikView/expression-indicator/m-p/1179783#M382502</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;If(MIN_DATE_DEB &amp;gt; MakeTime(8, 30),' qmem://&amp;lt;bundled&amp;gt;/BuiltIn/plus_g.png', 'qmem://&amp;lt;bundled&amp;gt;/BuiltIn/smiley2_b.png')&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Sep 2016 16:10:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/expression-indicator/m-p/1179783#M382502</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-09-09T16:10:00Z</dc:date>
    </item>
    <item>
      <title>Re: expression indicator</title>
      <link>https://community.qlik.com/t5/QlikView/expression-indicator/m-p/1179784#M382503</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am curious will it work with this:&lt;/P&gt;&lt;P&gt;time((8*60+30)/24/60,'hh:mm:ss')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or still wouldn't work and would be the same as &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;time('08:30:00','hh:mm:ss')?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Sep 2016 16:21:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/expression-indicator/m-p/1179784#M382503</guid>
      <dc:creator>MindaugasBacius</dc:creator>
      <dc:date>2016-09-09T16:21:39Z</dc:date>
    </item>
    <item>
      <title>Re: expression indicator</title>
      <link>https://community.qlik.com/t5/QlikView/expression-indicator/m-p/1179785#M382504</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;did you delete the integer (date)part from your timestamp like suggested in your thread &lt;A href="https://community.qlik.com/thread/232109"&gt;extract field&lt;/A&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Otherwise the comparison &lt;SPAN style="font-size: 13.3333px;"&gt;&amp;gt; 08:30 &lt;/SPAN&gt;will always be true for dates later than 12/30/1899.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Try to extract the time part with an expression like the suggested &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 1.5em; color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 1.5em; color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Time(Frac(MIN_DATE_DEB))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 1.5em; color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 1.5em; color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;or maybe&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 1.5em; color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 1.5em; color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Time#(Time(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;MIN_DATE_DEB,'hh:mm:ss'&lt;/SPAN&gt;)&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;,'hh:mm:ss'&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;)&lt;/SPAN&gt;&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;One example:&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;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;&lt;IMG alt="QlikCommunity_Thread_232195_Pic1.JPG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/137010_QlikCommunity_Thread_232195_Pic1.JPG" style="height: 182px; width: 620px;" /&gt;&lt;BR /&gt;&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;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14734550262748241" jivemacro_uid="_14734550262748241"&gt;
&lt;P&gt;table1:&lt;/P&gt;
&lt;P&gt;LOAD *,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Time#(Time(MIN_DATE_DEB,'hh:mm:ss'),'hh:mm:ss') as MIN_DATE_DEB_TIME;&lt;/P&gt;
&lt;P&gt;LOAD Timestamp(Today()-Rand()*100) as MIN_DATE_DEB&lt;/P&gt;
&lt;P&gt;AutoGenerate 100;&lt;/P&gt;
&lt;/PRE&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;&lt;BR /&gt;&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;hope this helps&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;regards&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;Marco&lt;BR /&gt;&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Sep 2016 21:04:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/expression-indicator/m-p/1179785#M382504</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2016-09-09T21:04:49Z</dc:date>
    </item>
  </channel>
</rss>

