<?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: Searching Entire Date Field For Meet Condition in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Searching-Entire-Date-Field-For-Meet-Condition/m-p/1305363#M406384</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;These are all great suggestions. I will try each of them as there are typically many answers to a solution. I will repost once I try these.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&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, 13 Jul 2017 14:57:13 GMT</pubDate>
    <dc:creator>pandreozzi</dc:creator>
    <dc:date>2017-07-13T14:57:13Z</dc:date>
    <item>
      <title>Searching Entire Date Field For Meet Condition</title>
      <link>https://community.qlik.com/t5/QlikView/Searching-Entire-Date-Field-For-Meet-Condition/m-p/1305359#M406380</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a challenge. I have a date field in my table called Billing_End which represents when an item stops billing. This Billing_End date field is used on multiple sheets. My challenge is hide or show a sheet called Billing End Date Search based on this field. This called for searching the entire table for any date the is greater than the date today. I did get part of this to work with the following code. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=if(BILLING_END &amp;lt;= vDate,1,0)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What happens with this code is as soon as the first condition is meet the code exits and thinks that is ok. My problem is with multiple items tied to one customer have more than one Billing_End date the Billing End Date Search sheet needs to be displayed for example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A customer may have the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;item A billing start date 01/01/2015 billing end date 01/01/2099&lt;BR /&gt;item B billing start date 01/01/2016 billing end date 06/30/2017&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With this scenario and my code the condition is meet based on the billing end date of item A so the Billing End Date Search sheet hides and the next item "B" is never considered. If item "B" is considered than the Billing End Date Search sheet will be visible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for any suggestions. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jul 2017 14:39:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Searching-Entire-Date-Field-For-Meet-Condition/m-p/1305359#M406380</guid>
      <dc:creator>pandreozzi</dc:creator>
      <dc:date>2017-07-13T14:39:01Z</dc:date>
    </item>
    <item>
      <title>Re: Searching Entire Date Field For Meet Condition</title>
      <link>https://community.qlik.com/t5/QlikView/Searching-Entire-Date-Field-For-Meet-Condition/m-p/1305360#M406381</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi &lt;/P&gt;&lt;P&gt;you need something like this &lt;/P&gt;&lt;P&gt;sum(aggr(if(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;BILLING_END &amp;lt;= vDate,1,0),Item,Customer))&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;this function will give you the some of the conditions that are fulfilled per customer and item &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;so if the result is bigger than 1 you will display the sheet&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jul 2017 14:43:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Searching-Entire-Date-Field-For-Meet-Condition/m-p/1305360#M406381</guid>
      <dc:creator>lironbaram</dc:creator>
      <dc:date>2017-07-13T14:43:28Z</dc:date>
    </item>
    <item>
      <title>Re: Searching Entire Date Field For Meet Condition</title>
      <link>https://community.qlik.com/t5/QlikView/Searching-Entire-Date-Field-For-Meet-Condition/m-p/1305361#M406382</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;how about&lt;/P&gt;&lt;P&gt;=count(distinct {BILLING_END={'$&amp;lt;=$(vDate)'}ITEM)&amp;gt;0&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jul 2017 14:43:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Searching-Entire-Date-Field-For-Meet-Condition/m-p/1305361#M406382</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-07-13T14:43:37Z</dc:date>
    </item>
    <item>
      <title>Re: Searching Entire Date Field For Meet Condition</title>
      <link>https://community.qlik.com/t5/QlikView/Searching-Entire-Date-Field-For-Meet-Condition/m-p/1305362#M406383</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Paul,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Try something like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=if(min(Aggr(only(BILLING_END), ItemID)) &amp;lt;= vDate,1,0)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andrew&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jul 2017 14:46:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Searching-Entire-Date-Field-For-Meet-Condition/m-p/1305362#M406383</guid>
      <dc:creator>effinty2112</dc:creator>
      <dc:date>2017-07-13T14:46:10Z</dc:date>
    </item>
    <item>
      <title>Re: Searching Entire Date Field For Meet Condition</title>
      <link>https://community.qlik.com/t5/QlikView/Searching-Entire-Date-Field-For-Meet-Condition/m-p/1305363#M406384</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;These are all great suggestions. I will try each of them as there are typically many answers to a solution. I will repost once I try these.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&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, 13 Jul 2017 14:57:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Searching-Entire-Date-Field-For-Meet-Condition/m-p/1305363#M406384</guid>
      <dc:creator>pandreozzi</dc:creator>
      <dc:date>2017-07-13T14:57:13Z</dc:date>
    </item>
    <item>
      <title>Re: Searching Entire Date Field For Meet Condition</title>
      <link>https://community.qlik.com/t5/QlikView/Searching-Entire-Date-Field-For-Meet-Condition/m-p/1305364#M406385</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Andrew what does ItemID represent in your suggestion?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jul 2017 15:00:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Searching-Entire-Date-Field-For-Meet-Condition/m-p/1305364#M406385</guid>
      <dc:creator>pandreozzi</dc:creator>
      <dc:date>2017-07-13T15:00:18Z</dc:date>
    </item>
    <item>
      <title>Re: Searching Entire Date Field For Meet Condition</title>
      <link>https://community.qlik.com/t5/QlikView/Searching-Entire-Date-Field-For-Meet-Condition/m-p/1305365#M406386</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wallo what does Item represent in your suggestion?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jul 2017 15:00:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Searching-Entire-Date-Field-For-Meet-Condition/m-p/1305365#M406386</guid>
      <dc:creator>pandreozzi</dc:creator>
      <dc:date>2017-07-13T15:00:41Z</dc:date>
    </item>
    <item>
      <title>Re: Searching Entire Date Field For Meet Condition</title>
      <link>https://community.qlik.com/t5/QlikView/Searching-Entire-Date-Field-For-Meet-Condition/m-p/1305366#M406387</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's my guess at the name of your field that contains your item names.&lt;/P&gt;&lt;P&gt;i.e., Item A, Item B, etc.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jul 2017 15:04:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Searching-Entire-Date-Field-For-Meet-Condition/m-p/1305366#M406387</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-07-13T15:04:30Z</dc:date>
    </item>
    <item>
      <title>Re: Searching Entire Date Field For Meet Condition</title>
      <link>https://community.qlik.com/t5/QlikView/Searching-Entire-Date-Field-For-Meet-Condition/m-p/1305367#M406388</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ItemID is some identifier for each Item. Since I don't know your data model I don't know what the field name to use should be but try substituting ItemID with the correct field - an item reference or part number or whatever.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andrew&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jul 2017 15:05:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Searching-Entire-Date-Field-For-Meet-Condition/m-p/1305367#M406388</guid>
      <dc:creator>effinty2112</dc:creator>
      <dc:date>2017-07-13T15:05:23Z</dc:date>
    </item>
    <item>
      <title>Re: Searching Entire Date Field For Meet Condition</title>
      <link>https://community.qlik.com/t5/QlikView/Searching-Entire-Date-Field-For-Meet-Condition/m-p/1305368#M406389</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks guys. Below is what seem to have worked. I will continue testing and if something changes I will post. I will also try the other two suggestion.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;&lt;SPAN style="font-size: 8pt;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;sum&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;aggr&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;BILLING_END&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &amp;lt;= &lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM style=": ; color: #808080; font-size: 8pt;"&gt;vDate&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;,1,0),&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;ATBILLINGSITEID&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;GEMS_ORG_DESCRIPTION&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;)) &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jul 2017 15:08:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Searching-Entire-Date-Field-For-Meet-Condition/m-p/1305368#M406389</guid>
      <dc:creator>pandreozzi</dc:creator>
      <dc:date>2017-07-13T15:08:19Z</dc:date>
    </item>
    <item>
      <title>Re: Searching Entire Date Field For Meet Condition</title>
      <link>https://community.qlik.com/t5/QlikView/Searching-Entire-Date-Field-For-Meet-Condition/m-p/1305369#M406390</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This also worked&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;if&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;min&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Aggr&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;only&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;BILLING_END&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;), &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;ATBILLINGSITEID&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;)) &amp;lt;= &lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM style=": ; color: #808080; font-size: 8pt;"&gt;vDate&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;,1,0) &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jul 2017 15:11:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Searching-Entire-Date-Field-For-Meet-Condition/m-p/1305369#M406390</guid>
      <dc:creator>pandreozzi</dc:creator>
      <dc:date>2017-07-13T15:11:26Z</dc:date>
    </item>
    <item>
      <title>Re: Searching Entire Date Field For Meet Condition</title>
      <link>https://community.qlik.com/t5/QlikView/Searching-Entire-Date-Field-For-Meet-Condition/m-p/1305370#M406391</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry to say the third option gave me an expression error. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jul 2017 15:12:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Searching-Entire-Date-Field-For-Meet-Condition/m-p/1305370#M406391</guid>
      <dc:creator>pandreozzi</dc:creator>
      <dc:date>2017-07-13T15:12:48Z</dc:date>
    </item>
    <item>
      <title>Re: Searching Entire Date Field For Meet Condition</title>
      <link>https://community.qlik.com/t5/QlikView/Searching-Entire-Date-Field-For-Meet-Condition/m-p/1305371#M406392</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can someone break down this expression for me in simple terms.&lt;/P&gt;&lt;P&gt;&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;if&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;min&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Aggr&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;only&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;BILLING_END&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;), &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;ATBILLINGSITEID&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;)) &amp;lt;= &lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM style="color: #808080; font-size: 8pt;"&gt;vDate&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;,1,0) &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I get the if statement but what does the min, Aggr and only do as this expression is being executed?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My take is that the min is looking at the variable defined and the aggr forces the expression to look at the entire table contends of the ATBILLINGSITEID and BILLIN_END. I am not sure what only does. If I am wrong please correct me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Jul 2017 12:09:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Searching-Entire-Date-Field-For-Meet-Condition/m-p/1305371#M406392</guid>
      <dc:creator>pandreozzi</dc:creator>
      <dc:date>2017-07-21T12:09:48Z</dc:date>
    </item>
    <item>
      <title>Re: Searching Entire Date Field For Meet Condition</title>
      <link>https://community.qlik.com/t5/QlikView/Searching-Entire-Date-Field-For-Meet-Condition/m-p/1305372#M406393</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;here is my try&lt;/P&gt;&lt;P&gt;the min function find the minimal value of the aggr function &lt;/P&gt;&lt;P&gt;the aggr function builds a virtual table with &lt;SPAN style="color: #800000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10.6667px;"&gt;ATBILLINGSITEID&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10.6667px;"&gt;as the dimension and &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10.6667px;"&gt;only (BILLING_END) as the expression , the expression will return a value only for the &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000; font-size: 10.6667px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;ATBILLINGSITEID&amp;nbsp;&amp;nbsp; values who as one BILLING_END value otherwise it'll return null &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000; font-size: 10.6667px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;so in short the expression find the minimal BILLING_END for the &lt;SPAN style="color: #800000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10.6667px;"&gt;ATBILLINGSITEID&amp;nbsp; value who has on BILLING_END value&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000; font-size: 10.6667px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;and compare this value to the variable &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Jul 2017 12:57:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Searching-Entire-Date-Field-For-Meet-Condition/m-p/1305372#M406393</guid>
      <dc:creator>lironbaram</dc:creator>
      <dc:date>2017-07-21T12:57:47Z</dc:date>
    </item>
  </channel>
</rss>

