<?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 Nested If Statement Validation in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Nested-If-Statement-Validation/m-p/890154#M310180</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello folks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have noticed that a case that should be picked up by the 4th line of code in the statement below is actually passing thru to the 5th line. &lt;/P&gt;&lt;P&gt;After spending some time looking at this statement, I am unable to identify where it is going wrong, so am hoping someone could help me trouble shoot my logic, syntax?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;( If(Level='Lvl 1' and &lt;SPAN style="font-size: 13.3333330154419px;"&gt;open_date&lt;/SPAN&gt;+30 &amp;lt; Today(), 0,&lt;/P&gt;&lt;P&gt;If(Level='Lvl 1' and &lt;SPAN style="font-size: 13.3333330154419px;"&gt;open_date&lt;/SPAN&gt;+30 &amp;gt;= Today(), NetWorkDays(Today(),&lt;SPAN style="font-size: 13.3333330154419px;"&gt;open_date&lt;/SPAN&gt;+30),&lt;/P&gt;&lt;P&gt;If(Level='Lvl 2' and &lt;SPAN style="font-size: 13.3333330154419px;"&gt;open_date&lt;/SPAN&gt;+60 &amp;lt; Today(), 0,&lt;/P&gt;&lt;P&gt;If(Level='Lvl 2' and open_date+60 &amp;gt;= Today(), NetWorkDays(Today(),&lt;SPAN style="font-size: 13.3333330154419px;"&gt;open_date&lt;/SPAN&gt;+60),&lt;/P&gt;&lt;P&gt;0)))))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank-you!&lt;/P&gt;&lt;P&gt;Dan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 24 Jun 2015 12:59:03 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-06-24T12:59:03Z</dc:date>
    <item>
      <title>Nested If Statement Validation</title>
      <link>https://community.qlik.com/t5/QlikView/Nested-If-Statement-Validation/m-p/890154#M310180</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello folks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have noticed that a case that should be picked up by the 4th line of code in the statement below is actually passing thru to the 5th line. &lt;/P&gt;&lt;P&gt;After spending some time looking at this statement, I am unable to identify where it is going wrong, so am hoping someone could help me trouble shoot my logic, syntax?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;( If(Level='Lvl 1' and &lt;SPAN style="font-size: 13.3333330154419px;"&gt;open_date&lt;/SPAN&gt;+30 &amp;lt; Today(), 0,&lt;/P&gt;&lt;P&gt;If(Level='Lvl 1' and &lt;SPAN style="font-size: 13.3333330154419px;"&gt;open_date&lt;/SPAN&gt;+30 &amp;gt;= Today(), NetWorkDays(Today(),&lt;SPAN style="font-size: 13.3333330154419px;"&gt;open_date&lt;/SPAN&gt;+30),&lt;/P&gt;&lt;P&gt;If(Level='Lvl 2' and &lt;SPAN style="font-size: 13.3333330154419px;"&gt;open_date&lt;/SPAN&gt;+60 &amp;lt; Today(), 0,&lt;/P&gt;&lt;P&gt;If(Level='Lvl 2' and open_date+60 &amp;gt;= Today(), NetWorkDays(Today(),&lt;SPAN style="font-size: 13.3333330154419px;"&gt;open_date&lt;/SPAN&gt;+60),&lt;/P&gt;&lt;P&gt;0)))))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank-you!&lt;/P&gt;&lt;P&gt;Dan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jun 2015 12:59:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Nested-If-Statement-Validation/m-p/890154#M310180</guid>
      <dc:creator />
      <dc:date>2015-06-24T12:59:03Z</dc:date>
    </item>
    <item>
      <title>Re: Nested If Statement Validation</title>
      <link>https://community.qlik.com/t5/QlikView/Nested-If-Statement-Validation/m-p/890155#M310181</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;each date has its numerical rapresentation so you must decide if using a numerical or a date format when you manage data&lt;/P&gt;&lt;P&gt;so:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.33px;"&gt;open_date&lt;/SPAN&gt;+30 &amp;lt; Today()&amp;nbsp; shoult be changet to&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Num(open_date)+30 &amp;lt; Num(Today())&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and so on&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jun 2015 13:11:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Nested-If-Statement-Validation/m-p/890155#M310181</guid>
      <dc:creator>alexandros17</dc:creator>
      <dc:date>2015-06-24T13:11:51Z</dc:date>
    </item>
    <item>
      <title>Re: Nested If Statement Validation</title>
      <link>https://community.qlik.com/t5/QlikView/Nested-If-Statement-Validation/m-p/890156#M310182</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what's the case (open_date) you think has problem?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jun 2015 19:15:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Nested-If-Statement-Validation/m-p/890156#M310182</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2015-06-24T19:15:13Z</dc:date>
    </item>
  </channel>
</rss>

