<?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: Issue with OR statement with an AND statement in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Issue-with-OR-statement-with-an-AND-statement/m-p/1282259#M402009</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hI vISHWARATH ,&lt;/P&gt;&lt;P&gt;this does not work for the same reasons &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 16 Feb 2017 04:51:13 GMT</pubDate>
    <dc:creator>fashid</dc:creator>
    <dc:date>2017-02-16T04:51:13Z</dc:date>
    <item>
      <title>Issue with OR statement with an AND statement</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-with-OR-statement-with-an-AND-statement/m-p/1282255#M402005</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have an issue with writing an or statement.&lt;/P&gt;&lt;P&gt;currently below is my if statement&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(Sum(REQ)&amp;gt;0&amp;nbsp; and REQUIREMENT_NEW ='27041' or&amp;nbsp; REQUIREMENT_OLD='27041','NOT APPLICABLE','APPLICABLE') AS REQUIREMENT &lt;/P&gt;&lt;P&gt;But this statement is not returning the results.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want to know if for an order i have &lt;SPAN style="font-size: 13.3333px;"&gt;Sum(REQ)&amp;gt;0&lt;/SPAN&gt; and if either of &lt;SPAN style="font-size: 13.3333px;"&gt;REQUIREMENT_NEW or &lt;SPAN style="font-size: 13.3333px;"&gt;REQUIREMENT_OLD is equal to &lt;SPAN style="font-size: 13.3333px;"&gt;27041&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;then it it should give NOT APPLICABLE.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now i also know why i am getting wrong results.&lt;/P&gt;&lt;P&gt;I am getting both &lt;SPAN style="font-size: 13.3333px;"&gt;NOT APPLICABLE&lt;/SPAN&gt; and &lt;SPAN style="font-size: 13.3333px;"&gt;APPLICABLE&lt;/SPAN&gt; for that particular order because i have values other than 27041 in the &lt;SPAN style="font-size: 13.3333px;"&gt;REQUIREMENT_OLD&lt;/SPAN&gt; for that particular order.&lt;/P&gt;&lt;P&gt;i have attached an instance of my sample data and my sample output required&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nadeem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Nadeem Shaikh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2017 16:14:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-with-OR-statement-with-an-AND-statement/m-p/1282255#M402005</guid>
      <dc:creator>fashid</dc:creator>
      <dc:date>2017-02-15T16:14:16Z</dc:date>
    </item>
    <item>
      <title>Re: How do i write an OR statement with an AND statement</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-with-OR-statement-with-an-AND-statement/m-p/1282256#M402006</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You don't need to use an and, just evaluate the first condition then pass to another IF() if True;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(Sum(REQ)&amp;gt;0, if(REQUIREMENT_NEW ='27041' or&amp;nbsp; REQUIREMENT_OLD='27041','NOT APPLICABLE','APPLICABLE')) AS REQUIREMENT&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2017 16:20:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-with-OR-statement-with-an-AND-statement/m-p/1282256#M402006</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-02-15T16:20:46Z</dc:date>
    </item>
    <item>
      <title>Re: How do i write an OR statement with an AND statement</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-with-OR-statement-with-an-AND-statement/m-p/1282257#M402007</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&gt;= if(Sum(REQ)&amp;gt; 0&amp;nbsp; AND (REQUIREMENT_NEW ='27041' or&amp;nbsp; REQUIREMENT_OLD='27041'), 'NOT APPLICABLE', 'APPLICABLE') AS REQUIREMENT&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2017 16:27:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-with-OR-statement-with-an-AND-statement/m-p/1282257#M402007</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2017-02-15T16:27:47Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with OR statement with an AND statement</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-with-OR-statement-with-an-AND-statement/m-p/1282258#M402008</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your reply gareth but this not work as i have multiple values for REQUIREMENT_OLD other than 27041&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2017 04:48:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-with-OR-statement-with-an-AND-statement/m-p/1282258#M402008</guid>
      <dc:creator>fashid</dc:creator>
      <dc:date>2017-02-16T04:48:42Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with OR statement with an AND statement</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-with-OR-statement-with-an-AND-statement/m-p/1282259#M402009</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hI vISHWARATH ,&lt;/P&gt;&lt;P&gt;this does not work for the same reasons &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2017 04:51:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-with-OR-statement-with-an-AND-statement/m-p/1282259#M402009</guid>
      <dc:creator>fashid</dc:creator>
      <dc:date>2017-02-16T04:51:13Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with OR statement with an AND statement</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-with-OR-statement-with-an-AND-statement/m-p/1282260#M402010</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&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; if(Sum(REQ)&amp;gt;0&amp;nbsp; and ( REQUIREMENT_NEW ='27041' or&amp;nbsp; REQUIREMENT_OLD='27041'),'NOT APPLICABLE','APPLICABLE') AS REQUIREMENT&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2017 05:06:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-with-OR-statement-with-an-AND-statement/m-p/1282260#M402010</guid>
      <dc:creator />
      <dc:date>2017-02-16T05:06:12Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with OR statement with an AND statement</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-with-OR-statement-with-an-AND-statement/m-p/1282261#M402011</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can you pls share ur application &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2017 05:11:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-with-OR-statement-with-an-AND-statement/m-p/1282261#M402011</guid>
      <dc:creator />
      <dc:date>2017-02-16T05:11:55Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with OR statement with an AND statement</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-with-OR-statement-with-an-AND-statement/m-p/1282262#M402012</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi manoj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have attached the excel file along with output that is required &lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;nadeem&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2017 05:14:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-with-OR-statement-with-an-AND-statement/m-p/1282262#M402012</guid>
      <dc:creator>fashid</dc:creator>
      <dc:date>2017-02-16T05:14:49Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with OR statement with an AND statement</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-with-OR-statement-with-an-AND-statement/m-p/1282263#M402013</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;which u have shared the source file does't have REQ column&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2017 05:18:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-with-OR-statement-with-an-AND-statement/m-p/1282263#M402013</guid>
      <dc:creator />
      <dc:date>2017-02-16T05:18:38Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with OR statement with an AND statement</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-with-OR-statement-with-an-AND-statement/m-p/1282264#M402014</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have added the column&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2017 05:22:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-with-OR-statement-with-an-AND-statement/m-p/1282264#M402014</guid>
      <dc:creator>fashid</dc:creator>
      <dc:date>2017-02-16T05:22:03Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with OR statement with an AND statement</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-with-OR-statement-with-an-AND-statement/m-p/1282265#M402015</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your expression ok to me, What was the wrong over here&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sum(REQ) -- Where do you use this, And can you tell us what was the metric you want to use over here&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;May be try below&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; font-size: 13px;"&gt;&lt;STRONG&gt;if(Sum(REQ_NEW)&amp;gt;0&amp;nbsp; and (REQ_NEW ='27041' or&amp;nbsp; REQ_OLD='27041'),'NOT APPLICABLE','APPLICABLE') AS REQUIREMENT &lt;/STRONG&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;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&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;STRONG&gt;Or&lt;/STRONG&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;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;if(Sum(REQ_OLD)&amp;gt;0&amp;nbsp; and (REQ_NEW ='27041' or&amp;nbsp; REQ_OLD='27041'),'NOT APPLICABLE','APPLICABLE') AS REQUIREMENT &lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2017 05:25:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-with-OR-statement-with-an-AND-statement/m-p/1282265#M402015</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-02-16T05:25:43Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with OR statement with an AND statement</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-with-OR-statement-with-an-AND-statement/m-p/1282266#M402016</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Or&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; font-size: 13px;"&gt;&lt;STRONG&gt;if(Sum(REQ)&amp;gt;0&amp;nbsp; and &lt;SPAN style="color: #ff0000;"&gt;(&lt;/SPAN&gt;REQ_NEW ='27041' or&amp;nbsp; REQ_OLD='27041'&lt;SPAN style="color: #ff0000;"&gt;)&lt;/SPAN&gt;,'NOT APPLICABLE','APPLICABLE') AS REQUIREMENT&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2017 05:28:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-with-OR-statement-with-an-AND-statement/m-p/1282266#M402016</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-02-16T05:28:17Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with OR statement with an AND statement</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-with-OR-statement-with-an-AND-statement/m-p/1282267#M402017</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anil,&lt;/P&gt;&lt;P&gt;I have used the same expression it works but my problem lies as REQ_NEW or REQ_OLD has values other than 27041 . &lt;/P&gt;&lt;P&gt;i want a logic such that if the value 27041 is found in either column it should give the out put not applicable and stop evaluating further values and keep them not applicable only.&lt;/P&gt;&lt;P&gt;please have a look at my attached excel &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nadeem&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2017 05:49:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-with-OR-statement-with-an-AND-statement/m-p/1282267#M402017</guid>
      <dc:creator>fashid</dc:creator>
      <dc:date>2017-02-16T05:49:10Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with OR statement with an AND statement</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-with-OR-statement-with-an-AND-statement/m-p/1282268#M402018</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi I tried this in backend,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;did some work around for this ,it is coming up now&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; TEST:&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;LOAD&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; *,&lt;BR /&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;test&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Previous&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;test&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;),'APP','NOT') &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;AS&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;RES&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; ;&lt;BR /&gt; &lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;LOAD&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[order no]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;REQ_NEW&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, K&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;REQ_OLD&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;REQ_NEW&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;amp;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;REQ_OLD&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;data&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&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;wildmatch&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;((&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;REQ_NEW&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;amp;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;REQ_OLD&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;),'*27041*'), 'Match','not') &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;test&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;output&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;F5&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;FROM&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[\\svrin000mbp01.asia.corp.anz.com\kumar12$\Downloads\New Microsoft Excel Worksheet.xls]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; (&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;biff&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;embedded&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;labels&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;table&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;is&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; Sheet1$);&lt;BR /&gt; &lt;BR /&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Test this once let me know &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2017 09:38:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-with-OR-statement-with-an-AND-statement/m-p/1282268#M402018</guid>
      <dc:creator />
      <dc:date>2017-02-16T09:38:12Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with OR statement with an AND statement</title>
      <link>https://community.qlik.com/t5/QlikView/Issue-with-OR-statement-with-an-AND-statement/m-p/1282269#M402019</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you doing this in the script or front end?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sum() isnt required in the script;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f2f2f2;"&gt;if(REQ&amp;gt;0, if(REQUIREMENT_NEW ='27041' or&amp;nbsp; REQUIREMENT_OLD='27041','NOT APPLICABLE','APPLICABLE')) AS REQUIREMENT &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2017 10:13:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Issue-with-OR-statement-with-an-AND-statement/m-p/1282269#M402019</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-02-16T10:13:55Z</dc:date>
    </item>
  </channel>
</rss>

