<?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: is not null OR is not null in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/is-not-null-OR-is-not-null/m-p/835086#M1009249</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This looks good - it's pulling back 1 and 2 for 'Audit' - let me do some more testing and I'll confirm for you - thank you for this!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 11 May 2015 15:30:58 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-05-11T15:30:58Z</dc:date>
    <item>
      <title>is not null OR is not null</title>
      <link>https://community.qlik.com/t5/QlikView/is-not-null-OR-is-not-null/m-p/835078#M1009241</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;Am trying to create an audit report looking at fields that have been amended from NULL to anything else. I need a report that only shows me a record where any of the many fields being audited are not null. I tried in my load script to create a field 'Audit' where NULL was 1, and not NULL 2, but this only works for one field - add another field to that statement and it's an AND - i.e. only shows me where both fields are not NULL. I tried adding an OR to the statement, but I can't get this to work. The script I tried was:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;STRONG style="color: #0000ff;"&gt;&amp;nbsp; &lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #0000ff;"&gt; *,&lt;BR /&gt;&lt;SPAN style="color: #0000ff;"&gt;if&lt;/SPAN&gt;(&lt;BR /&gt;(&lt;SPAN style="color: #800000;"&gt;Vendors.ACCTS_PAY_CODE_COMBINATION_ID&lt;/SPAN&gt; = 'NULL') &lt;SPAN style="color: #0000ff;"&gt;or&lt;/SPAN&gt; &lt;BR /&gt;(&lt;SPAN style="color: #800000;"&gt;Vendors.ALLOW_AWT_FLAG&lt;/SPAN&gt; = 'NULL') &lt;SPAN style="color: #0000ff;"&gt;or&lt;/SPAN&gt; &lt;BR /&gt;(&lt;SPAN style="color: #800000;"&gt;Vendors.CUSTOMER_NUM&lt;/SPAN&gt; = 'NULL') &lt;SPAN style="color: #0000ff;"&gt;or&lt;/SPAN&gt; &lt;BR /&gt;(&lt;SPAN style="color: #800000;"&gt;Vendors.ATTRIBUTE2&lt;/SPAN&gt; = 'NULL'),1, 2) &lt;SPAN style="color: #0000ff;"&gt;as&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;'Audit'&lt;/SPAN&gt;; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but this only returns a value of '1' for 'Audit'.&lt;/P&gt;&lt;P&gt;I don't want to have a calculated field for every field as the performance will be pityful - there must be a way to create a flag in the load script?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Ella&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 May 2015 14:30:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/is-not-null-OR-is-not-null/m-p/835078#M1009241</guid>
      <dc:creator />
      <dc:date>2015-05-11T14:30:33Z</dc:date>
    </item>
    <item>
      <title>Re: is not null OR is not null</title>
      <link>https://community.qlik.com/t5/QlikView/is-not-null-OR-is-not-null/m-p/835079#M1009242</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use&lt;/P&gt;&lt;P&gt;isnull(your_field)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt; *,&lt;BR /&gt;&lt;SPAN style="color: #0000ff;"&gt;if&lt;/SPAN&gt;(&lt;BR /&gt;(&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG style="color: #0000ff;"&gt;&lt;STRONG&gt;isnull&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;Vendors.ACCTS_PAY_CODE_COMBINATION_ID&lt;/SPAN&gt;) &lt;SPAN style="color: #0000ff;"&gt;or&lt;/SPAN&gt; &lt;BR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;isnull&lt;/STRONG&gt;&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;Vendors.ALLOW_AWT_FLAG&lt;/SPAN&gt;) &lt;SPAN style="color: #0000ff;"&gt;or&lt;/SPAN&gt; &lt;BR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;isnull&lt;/STRONG&gt;&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;Vendors.CUSTOMER_NUM&lt;/SPAN&gt;) &lt;SPAN style="color: #0000ff;"&gt;or&lt;/SPAN&gt; &lt;BR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;isnull&lt;/STRONG&gt;&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;Vendors.ATTRIBUTE2&lt;/SPAN&gt;),1, 2) &lt;SPAN style="color: #0000ff;"&gt;as&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;'Audit'&lt;/SPAN&gt;; &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;MR&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 May 2015 14:34:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/is-not-null-OR-is-not-null/m-p/835079#M1009242</guid>
      <dc:creator>mrossoit</dc:creator>
      <dc:date>2015-05-11T14:34:03Z</dc:date>
    </item>
    <item>
      <title>Re: is not null OR is not null</title>
      <link>https://community.qlik.com/t5/QlikView/is-not-null-OR-is-not-null/m-p/835080#M1009243</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, you can use this :&lt;/P&gt;&lt;P style="font-size: 11px; font-family: Helvetica; color: #941100;"&gt;&lt;SPAN style="color: #0433ff;"&gt;&lt;STRONG&gt;LOAD&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;&lt;BR /&gt; *,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0433ff;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; (&lt;BR /&gt; ( &lt;/SPAN&gt;&lt;SPAN style="color: #0433ff;"&gt;len&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0433ff;"&gt;trim&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;(&lt;/SPAN&gt;Vendors.ACCTS_PAY_CODE_COMBINATION_ID&lt;SPAN style="color: #000000;"&gt;))&amp;nbsp; = 0) &lt;/SPAN&gt;&lt;SPAN style="color: #0433ff;"&gt;or&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; &lt;BR /&gt; (&lt;/SPAN&gt;&lt;SPAN style="color: #0433ff;"&gt;len&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0433ff;"&gt;trim&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;(&lt;/SPAN&gt;Vendors.ALLOW_AWT_FLAG&lt;SPAN style="color: #000000;"&gt; )) =0 ) &lt;/SPAN&gt;&lt;SPAN style="color: #0433ff;"&gt;or&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; &lt;BR /&gt; (&lt;/SPAN&gt;&lt;SPAN style="color: #0433ff;"&gt;len&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0433ff;"&gt;trim&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;(&lt;/SPAN&gt;Vendors.CUSTOMER_NUM&lt;SPAN style="color: #000000;"&gt; )) = 0 ) &lt;/SPAN&gt;&lt;SPAN style="color: #0433ff;"&gt;or&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; &lt;BR /&gt; (&lt;/SPAN&gt;&lt;SPAN style="color: #0433ff;"&gt;len&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0433ff;"&gt;trim&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;(&lt;/SPAN&gt;Vendors.ATTRIBUTE2&lt;SPAN style="color: #000000;"&gt;)) = 0),1, 2&lt;BR /&gt; )&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0433ff;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;'Audit'&lt;SPAN style="color: #000000;"&gt;; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 May 2015 14:42:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/is-not-null-OR-is-not-null/m-p/835080#M1009243</guid>
      <dc:creator>mambi</dc:creator>
      <dc:date>2015-05-11T14:42:24Z</dc:date>
    </item>
    <item>
      <title>Re: is not null OR is not null</title>
      <link>https://community.qlik.com/t5/QlikView/is-not-null-OR-is-not-null/m-p/835081#M1009244</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 10pt; font-family: arial, helvetica, sans-serif;"&gt;I am not sure what exactly are your trying to flag here:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, sans-serif; font-size: 10pt; color: #333333;"&gt;&lt;STRONG&gt;Goal: Flag when both are null with 1 and if even one of them is not null then it should be 2?&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, sans-serif; font-size: 10pt; color: #333333;"&gt;Try this:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-family: arial, helvetica, sans-serif; font-size: 10pt;"&gt;&lt;STRONG&gt;&lt;SPAN style="font-style: inherit;"&gt;if&lt;/SPAN&gt;(&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;(Len(Trim(&lt;SPAN style="font-style: inherit;"&gt;Vendors.ACCTS_PAY_CODE_COMBINATION_ID))&lt;/SPAN&gt; = 0) &lt;SPAN style="font-style: inherit;"&gt;or&lt;/SPAN&gt; &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;(Len(Trim(&lt;SPAN style="font-style: inherit;"&gt;Vendors.ALLOW_AWT_FLAG))&lt;/SPAN&gt; = 0) &lt;SPAN style="font-style: inherit;"&gt;or&lt;/SPAN&gt; &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;(Len(Trim(&lt;SPAN style="font-style: inherit;"&gt;Vendors.CUSTOMER_NUM))&lt;/SPAN&gt; = 0) &lt;SPAN style="font-style: inherit;"&gt;or&lt;/SPAN&gt; &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;(Len(Trim(&lt;SPAN style="font-style: inherit;"&gt;Vendors.ATTRIBUTE2))&lt;/SPAN&gt; = 0), 1, 2) &lt;SPAN style="font-style: inherit;"&gt;as&lt;/SPAN&gt; &lt;SPAN style="font-style: inherit;"&gt;'Audit'&lt;/SPAN&gt;;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt; font-style: inherit; font-family: inherit;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-family: arial, helvetica, sans-serif; font-size: 10pt; color: #333333;"&gt;&lt;STRONG&gt;Goal: Flag when either one of them or both are null with 1, otherwise 2?&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #333333; font-size: 10pt; font-family: arial, helvetica, sans-serif;"&gt;Try This:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #333333; font-size: 10pt; font-style: inherit; font-family: arial, helvetica, sans-serif; font-weight: inherit;"&gt;&lt;STRONG&gt;if&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #333333; font-size: 10pt; font-family: arial, helvetica, sans-serif;"&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #333333; font-size: 10pt; font-family: arial, helvetica, sans-serif;"&gt;&lt;STRONG&gt;(Len(Trim(&lt;SPAN style="font-style: inherit;"&gt;Vendors.ACCTS_PAY_CODE_COMBINATION_ID))&lt;/SPAN&gt; &amp;lt;&amp;gt; 0) &lt;SPAN style="font-style: inherit;"&gt;or&lt;/SPAN&gt; &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #333333; font-size: 10pt; font-family: arial, helvetica, sans-serif;"&gt;&lt;STRONG&gt;(Len(Trim(&lt;SPAN style="font-style: inherit;"&gt;Vendors.ALLOW_AWT_FLAG))&lt;/SPAN&gt; &amp;lt;&amp;gt; 0) &lt;SPAN style="font-style: inherit;"&gt;or&lt;/SPAN&gt; &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #333333; font-size: 10pt; font-family: arial, helvetica, sans-serif;"&gt;&lt;STRONG&gt;(Len(Trim(&lt;SPAN style="font-style: inherit;"&gt;Vendors.CUSTOMER_NUM))&lt;/SPAN&gt; &amp;lt;&amp;gt; 0) &lt;SPAN style="font-style: inherit;"&gt;or&lt;/SPAN&gt; &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="; color: #333333; font-size: 10pt; font-family: arial, helvetica, sans-serif;"&gt;&lt;STRONG&gt;(Len(Trim(&lt;SPAN style="font-style: inherit;"&gt;Vendors.ATTRIBUTE2))&lt;/SPAN&gt; &amp;lt;&amp;gt; 0), 2, 1) &lt;SPAN style="font-style: inherit;"&gt;as&lt;/SPAN&gt; &lt;SPAN style="font-style: inherit;"&gt;'Audit'&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #333333; font-size: 10pt; font-family: arial, helvetica, sans-serif;"&gt;&lt;STRONG&gt;;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 May 2015 14:48:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/is-not-null-OR-is-not-null/m-p/835081#M1009244</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-05-11T14:48:45Z</dc:date>
    </item>
    <item>
      <title>Re: is not null OR is not null</title>
      <link>https://community.qlik.com/t5/QlikView/is-not-null-OR-is-not-null/m-p/835082#M1009245</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If i use either of the suggestedl functions it only brings back a value of 2 for 'Audit'. I have set up examples of the perfect and imperfect record so I know that if the logic is correct it will bring back both a 1 and&amp;nbsp; 2. Am not sure if you can see the attached screen shot, but it shows the possible values for the fieldsa&lt;IMG alt="New Bitmap Image.bmp" class="jive-image image-1" src="/legacyfs/online/86186_New Bitmap Image.bmp" style="width: 620px; height: 363px;" /&gt;&lt;/P&gt;&lt;P&gt;the goal is to flag when 1 or more of the fields is not null.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your time guys - any other ideas?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ella&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 May 2015 15:05:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/is-not-null-OR-is-not-null/m-p/835082#M1009245</guid>
      <dc:creator />
      <dc:date>2015-05-11T15:05:05Z</dc:date>
    </item>
    <item>
      <title>Re: is not null OR is not null</title>
      <link>https://community.qlik.com/t5/QlikView/is-not-null-OR-is-not-null/m-p/835083#M1009246</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If i use either of the suggestedl functions it only brings back a value of 2 for 'Audit'. I have set up examples of the perfect and imperfect record so I know that if the logic is correct it will bring back both a 1 and&amp;nbsp; 2. Am not sure if you can see the attached screen shot, but it shows the possible values for the fieldsa&lt;A _jive_internal="true" href="https://community.qlik.com/servlet/JiveServlet/showImage/2-772183-86186/New Bitmap Image.bmp"&gt;&lt;IMG alt="New Bitmap Image.bmp" class="jive-image image-1" height="600" src="/legacyfs/online/86187_New Bitmap Image.bmp" width="1024" /&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;the goal is to flag when 1 or more of the fields is not null.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your time guys - any other ideas?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ella&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 May 2015 15:06:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/is-not-null-OR-is-not-null/m-p/835083#M1009246</guid>
      <dc:creator />
      <dc:date>2015-05-11T15:06:01Z</dc:date>
    </item>
    <item>
      <title>Re: is not null OR is not null</title>
      <link>https://community.qlik.com/t5/QlikView/is-not-null-OR-is-not-null/m-p/835084#M1009247</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;if&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN style="color: #0000ff;"&gt;(&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;Vendors.ACCTS_PAY_CODE_COMBINATION_ID&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff;"&gt; &amp;lt;&amp;gt; 'NULL') &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff;"&gt;or&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff;"&gt; &lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;Vendors.ALLOW_AWT_FLAG&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff;"&gt; &amp;lt;&amp;gt; 'NULL') &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff;"&gt;or&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff;"&gt; &lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;Vendors.CUSTOMER_NUM&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff;"&gt; &amp;lt;&amp;gt; 'NULL') &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff;"&gt;or&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff;"&gt; &lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;Vendors.ATTRIBUTE2&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff;"&gt; &amp;lt;&amp;gt; 'NULL'),2,1) &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000;"&gt;'Audit'&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff;"&gt;; &lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 May 2015 15:19:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/is-not-null-OR-is-not-null/m-p/835084#M1009247</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2015-05-11T15:19:07Z</dc:date>
    </item>
    <item>
      <title>Re: is not null OR is not null</title>
      <link>https://community.qlik.com/t5/QlikView/is-not-null-OR-is-not-null/m-p/835085#M1009248</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i think we need more explanations &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 May 2015 15:23:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/is-not-null-OR-is-not-null/m-p/835085#M1009248</guid>
      <dc:creator>mambi</dc:creator>
      <dc:date>2015-05-11T15:23:51Z</dc:date>
    </item>
    <item>
      <title>Re: is not null OR is not null</title>
      <link>https://community.qlik.com/t5/QlikView/is-not-null-OR-is-not-null/m-p/835086#M1009249</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This looks good - it's pulling back 1 and 2 for 'Audit' - let me do some more testing and I'll confirm for you - thank you for this!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 May 2015 15:30:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/is-not-null-OR-is-not-null/m-p/835086#M1009249</guid>
      <dc:creator />
      <dc:date>2015-05-11T15:30:58Z</dc:date>
    </item>
    <item>
      <title>Re: is not null OR is not null</title>
      <link>https://community.qlik.com/t5/QlikView/is-not-null-OR-is-not-null/m-p/835087#M1009250</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've tested it, it works great - thank you!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ella&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 May 2015 15:44:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/is-not-null-OR-is-not-null/m-p/835087#M1009250</guid>
      <dc:creator />
      <dc:date>2015-05-11T15:44:06Z</dc:date>
    </item>
  </channel>
</rss>

