<?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: Set Analysis with blank dates Query in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Set-Analysis-with-blank-dates-Query/m-p/775556#M1028374</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 try with simple if - else condition&lt;/P&gt;&lt;P&gt;like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sum(if(len(trim(AssetSoldDate))=0,&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;sum({$&amp;lt;AssetAcquiredDate={"&amp;gt;=$(=Date('01/01/1900'))"}&amp;gt;} JCCostsTotal),&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;sum({$&amp;lt;AssetAcquiredDate={"&amp;gt;=$(=Date('01/01/1900'))"},&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;AssetSoldDate={"&amp;gt;=$(=monthend(max(SelectDate)))"}&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&amp;gt;} JCCostsTotal)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 24 Feb 2015 06:52:06 GMT</pubDate>
    <dc:creator>PrashantSangle</dc:creator>
    <dc:date>2015-02-24T06:52:06Z</dc:date>
    <item>
      <title>Set Analysis with blank dates Query</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-with-blank-dates-Query/m-p/775552#M1028367</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am having problems with the following Set Analysis query.&amp;nbsp;&amp;nbsp; What I am wanting to extract are all records where an "AssetAcquiredDate" exists and the AssetSoldDate is either after the selected Month/Year or is blank (this means as at a selected period end, the item was still on the books).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following query works, apart from the "len(trim(AssetSoldDate))=0".&amp;nbsp; These items are being excluded - have I missed something in the syntax??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;sum({$&amp;lt;AssetAcquiredDate={"&amp;gt;=$(=Date('01/01/1900'))"},&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;AssetSoldDate={"&amp;gt;=$(=monthend(max(SelectDate)))" , "len(trim(AssetSoldDate))=0"}&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&amp;gt;} JCCostsTotal)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Feb 2015 05:19:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-with-blank-dates-Query/m-p/775552#M1028367</guid>
      <dc:creator />
      <dc:date>2015-02-24T05:19:50Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis with blank dates Query</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-with-blank-dates-Query/m-p/775553#M1028368</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;In script arrive a flag for null dates like below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&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;"&gt;If(len(trim(AssetSoldDate))=0, 1, 0) AS IsAssetSoldDateNull&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;FROM DataSource;&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: 10pt; line-height: 1.5em;"&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: 10pt; line-height: 1.5em;"&gt;Sum({$&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: 10pt; line-height: 1.5em;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;AssetAcquiredDate={"&amp;gt;=$(=Date('01/01/1900'))"}, AssetSoldDate ={"&amp;gt;=$(=monthend(max(SelectDate)))"}&amp;gt; +&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;lt;AssetAcquiredDate={"&amp;gt;=$(=Date('01/01/1900'))"}, &lt;SPAN&gt;IsAssetSoldDateNull={1}&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10pt; line-height: 1.5em;"&gt;&amp;gt;} JCCostsTotal)&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: 10pt; line-height: 1.5em;"&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: 10pt; line-height: 1.5em;"&gt;Hope this helps you.&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: 10pt; line-height: 1.5em;"&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: 10pt; line-height: 1.5em;"&gt;Regards,&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: 10pt; line-height: 1.5em;"&gt;Jagan.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Feb 2015 05:45:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-with-blank-dates-Query/m-p/775553#M1028368</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2015-02-24T05:45:39Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis with blank dates Query</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-with-blank-dates-Query/m-p/775554#M1028370</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Try this&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;"&lt;SPAN style="color: #ff00ff; font-size: 14pt;"&gt;=&lt;/SPAN&gt;len(trim(AssetSoldDate))=0"&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Feb 2015 05:57:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-with-blank-dates-Query/m-p/775554#M1028370</guid>
      <dc:creator>anbu1984</dc:creator>
      <dc:date>2015-02-24T05:57:51Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis with blank dates Query</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-with-blank-dates-Query/m-p/775555#M1028372</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&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;I tried this and it did not make any difference.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Feb 2015 06:40:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-with-blank-dates-Query/m-p/775555#M1028372</guid>
      <dc:creator />
      <dc:date>2015-02-24T06:40:16Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis with blank dates Query</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-with-blank-dates-Query/m-p/775556#M1028374</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 try with simple if - else condition&lt;/P&gt;&lt;P&gt;like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sum(if(len(trim(AssetSoldDate))=0,&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;sum({$&amp;lt;AssetAcquiredDate={"&amp;gt;=$(=Date('01/01/1900'))"}&amp;gt;} JCCostsTotal),&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;sum({$&amp;lt;AssetAcquiredDate={"&amp;gt;=$(=Date('01/01/1900'))"},&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;AssetSoldDate={"&amp;gt;=$(=monthend(max(SelectDate)))"}&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&amp;gt;} JCCostsTotal)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Feb 2015 06:52:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-with-blank-dates-Query/m-p/775556#M1028374</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2015-02-24T06:52:06Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis with blank dates Query</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-with-blank-dates-Query/m-p/775557#M1028376</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then you have Nulls in Date field instead of blanks. Replace ID with key field or non-nullable field&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;sum({$&amp;lt;AssetAcquiredDate={"&amp;gt;=$(=Date('01/01/1900'))"},&lt;/P&gt;&lt;P style="padding-left: 30px; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;AssetSoldDate={"&amp;gt;=$(=monthend(max(SelectDate)))"}&amp;gt; &lt;STRONG&gt;+ &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&amp;lt;AssetAcquiredDate={"&amp;gt;=$(=Date('01/01/1900'))"},&lt;SPAN style="font-size: 14pt;"&gt;ID&lt;/SPAN&gt;={&lt;/SPAN&gt;"=len(trim(AssetSoldDate))=0"}&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="padding-left: 30px; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;gt;} JCCostsTotal)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Feb 2015 07:01:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-with-blank-dates-Query/m-p/775557#M1028376</guid>
      <dc:creator>anbu1984</dc:creator>
      <dc:date>2015-02-24T07:01:02Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis with blank dates Query</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-with-blank-dates-Query/m-p/775558#M1028377</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks - this helped to get closer to a solution!&amp;nbsp; I found the following worked:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//&amp;nbsp; Blank Asset Sold Date&lt;/P&gt;&lt;P&gt;if(len(trim(AssetSoldDate))=0,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; sum({$&amp;lt;AssetAcquiredDate={"&amp;gt;=$(=Date('01/01/1900'))&amp;lt;$(=monthend(max(SelectDate)))"}&amp;gt;} JCCostsTotal),&lt;/P&gt;&lt;P&gt;// Else Asset Sold Date is after selected Month&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; sum({$&amp;lt;AssetAcquiredDate={"&amp;gt;=$(=Date('01/01/1900'))&amp;lt;$(=monthend(max(SelectDate)))"},&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; AssetSoldDate={"&amp;gt;$(=monthend(max(SelectDate)))"}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;gt;} JCCostsTotal))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However I have now found the pivot table totals are not correct.&amp;nbsp; Is this because there are two "sum" statements?&amp;nbsp; The system is only including values in the total where there was a sale in a future month:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="image-1 jive-image" src="https://community.qlik.com/legacyfs/online/79028_pastedImage_2.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Feb 2015 00:12:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-with-blank-dates-Query/m-p/775558#M1028377</guid>
      <dc:creator />
      <dc:date>2015-02-25T00:12:00Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis with blank dates Query</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-with-blank-dates-Query/m-p/775559#M1028378</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 tried this expression&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;*,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;If(len(trim(AssetSoldDate))=0, 1, 0) AS IsAssetSoldDateNull&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;FROM DataSource;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt;"&gt;Sum({$&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;AssetAcquiredDate={"&amp;gt;=$(=Date('01/01/1900'))"}, AssetSoldDate ={"&amp;gt;=$(=monthend(max(SelectDate)))"}&amp;gt; +&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;&amp;lt;AssetAcquiredDate={"&amp;gt;=$(=Date('01/01/1900'))"},&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;IsAssetSoldDateNull={1}&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt;"&gt;&amp;gt;} JCCostsTotal)&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt;"&gt;Jagan.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Feb 2015 02:31:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-with-blank-dates-Query/m-p/775559#M1028378</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2015-02-25T02:31:02Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis with blank dates Query</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-with-blank-dates-Query/m-p/775560#M1028379</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks - I have tried this approach and it is now working!&amp;nbsp; This is the syntax I ended up using:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// Asset Acquired Date is not blank and Asset Sold Date is either after this month or is blank.&lt;/P&gt;&lt;P&gt;Sum({$&amp;lt;AssetAcquiredDateIsNull={0}, AssetSoldDate ={"&amp;gt;$(=monthend(max(SelectDate)))"}&amp;gt; + &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;AssetAcquiredDateIsNull={0},AssetSoldDateIsNull={1}&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; } JCCostsTotal)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Feb 2015 05:34:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-with-blank-dates-Query/m-p/775560#M1028379</guid>
      <dc:creator />
      <dc:date>2015-02-25T05:34:29Z</dc:date>
    </item>
  </channel>
</rss>

