<?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: Expression help in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Expression-help/m-p/453742#M1163597</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; Just load a sample for your requirement, it suit for all JobFinishDates with a time of 23:59:59.. If you set flag in script means, performance also high ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 25 Oct 2012 14:08:36 GMT</pubDate>
    <dc:creator>MayilVahanan</dc:creator>
    <dc:date>2012-10-25T14:08:36Z</dc:date>
    <item>
      <title>Expression help</title>
      <link>https://community.qlik.com/t5/QlikView/Expression-help/m-p/453739#M1163594</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;I am trying to create a pivot table showing job details. I don't want to show any jobs with a JobFinishDate of xx/xx/xxxx 23:59:59 (X being the date)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here is an example..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="24170" class="jive-image-thumbnail jive-image" onclick="" alt="Capture.JPG" src="https://community.qlik.com/legacyfs/online/24170_Capture.JPG" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anyone know how i can hide this value please?&lt;/P&gt;&lt;P&gt;I was thinking of making the JobFinishDate an expression and doing an IF statement but i want it to ignore the date part of the timestamp and only exclude values matching 23:59:59 on the time part. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Oct 2012 12:48:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Expression-help/m-p/453739#M1163594</guid>
      <dc:creator>hopkinsc</dc:creator>
      <dc:date>2012-10-25T12:48:31Z</dc:date>
    </item>
    <item>
      <title>Re: Expression help</title>
      <link>https://community.qlik.com/t5/QlikView/Expression-help/m-p/453740#M1163595</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; Try like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load *,if(text(time(JobFinishDate))='23:59:59',1,0) as RegionFlag Inline&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;CompletedRegion,RegionSales,JobFinishDate&lt;/P&gt;&lt;P&gt;Central,1000,'23/12/2011 12:11:45'&lt;/P&gt;&lt;P&gt;Central,1000,'23/12/2011 23:59:59'&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then in expression, use like this&lt;/P&gt;&lt;P&gt;=Sum({&amp;lt;RegionFlag = {0}&amp;gt;}RegionSales)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From that, we can exclude the&amp;nbsp; xx/xx/xxxx 23:59:59 in table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;R.MayilVahanan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Oct 2012 13:51:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Expression-help/m-p/453740#M1163595</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2012-10-25T13:51:37Z</dc:date>
    </item>
    <item>
      <title>Re: Expression help</title>
      <link>https://community.qlik.com/t5/QlikView/Expression-help/m-p/453741#M1163596</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, i want to hide ALL JobFinishDates with a time of 23:59:59 not just the 2 listed. &lt;/P&gt;&lt;P&gt;I thought i could have used a function that could ignore the first 11 characters (The date) and then compare the remaining characters. and if the remaining characters = 23:59:59 then not show it. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Oct 2012 14:03:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Expression-help/m-p/453741#M1163596</guid>
      <dc:creator>hopkinsc</dc:creator>
      <dc:date>2012-10-25T14:03:39Z</dc:date>
    </item>
    <item>
      <title>Re: Expression help</title>
      <link>https://community.qlik.com/t5/QlikView/Expression-help/m-p/453742#M1163597</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; Just load a sample for your requirement, it suit for all JobFinishDates with a time of 23:59:59.. If you set flag in script means, performance also high ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Oct 2012 14:08:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Expression-help/m-p/453742#M1163597</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2012-10-25T14:08:36Z</dc:date>
    </item>
  </channel>
</rss>

