<?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: if(value=x,NULL,value) in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/if-value-x-NULL-value/m-p/892811#M996463</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;"" is a blank string and Null() function returns the true null value. below is the help text from Qlik&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="syntax"&gt;&lt;A name="kanchor890"&gt;&lt;/A&gt;&lt;A name="Null"&gt;&lt;/A&gt;&lt;SPAN class="Bold"&gt;Null( )&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;Returns a real NULL value. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 06 Jul 2015 19:20:01 GMT</pubDate>
    <dc:creator>sasiparupudi1</dc:creator>
    <dc:date>2015-07-06T19:20:01Z</dc:date>
    <item>
      <title>if(value=x,NULL,value)</title>
      <link>https://community.qlik.com/t5/QlikView/if-value-x-NULL-value/m-p/892809#M996461</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If a value is = to a certain value, then I need to set it to null, otherwise, I need to set it to the value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I'm not sure of, is what to use to set a value to null. Is '' truly a null value, or is there a way as there is in sql to say NULL, as '' is a blank string, not a null value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hopefully, this makes sense and I'm just having a moment.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance for your assistance!&lt;/P&gt;&lt;P&gt;Greg&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Jul 2015 18:11:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/if-value-x-NULL-value/m-p/892809#M996461</guid>
      <dc:creator />
      <dc:date>2015-07-06T18:11:13Z</dc:date>
    </item>
    <item>
      <title>Re: if(value=x,NULL,value)</title>
      <link>https://community.qlik.com/t5/QlikView/if-value-x-NULL-value/m-p/892810#M996462</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could simply use null():&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(value = 'x', null(), value)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Jul 2015 19:01:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/if-value-x-NULL-value/m-p/892810#M996462</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-07-06T19:01:33Z</dc:date>
    </item>
    <item>
      <title>Re: if(value=x,NULL,value)</title>
      <link>https://community.qlik.com/t5/QlikView/if-value-x-NULL-value/m-p/892811#M996463</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;"" is a blank string and Null() function returns the true null value. below is the help text from Qlik&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="syntax"&gt;&lt;A name="kanchor890"&gt;&lt;/A&gt;&lt;A name="Null"&gt;&lt;/A&gt;&lt;SPAN class="Bold"&gt;Null( )&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;Returns a real NULL value. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Jul 2015 19:20:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/if-value-x-NULL-value/m-p/892811#M996463</guid>
      <dc:creator>sasiparupudi1</dc:creator>
      <dc:date>2015-07-06T19:20:01Z</dc:date>
    </item>
    <item>
      <title>Re: if(value=x,NULL,value)</title>
      <link>https://community.qlik.com/t5/QlikView/if-value-x-NULL-value/m-p/892812#M996464</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;besides using the null() function, you could also negate your condition and omit the else part (so if() returns null in the else case):&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;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;If(value &amp;lt;&amp;gt; 'x', value)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Jul 2015 20:50:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/if-value-x-NULL-value/m-p/892812#M996464</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2015-07-06T20:50:20Z</dc:date>
    </item>
    <item>
      <title>Re: if(value=x,NULL,value)</title>
      <link>https://community.qlik.com/t5/QlikView/if-value-x-NULL-value/m-p/892813#M996465</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please close this thread if you got your answer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Jul 2015 06:51:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/if-value-x-NULL-value/m-p/892813#M996465</guid>
      <dc:creator>sasiparupudi1</dc:creator>
      <dc:date>2015-07-08T06:51:58Z</dc:date>
    </item>
    <item>
      <title>Re: if(value=x,NULL,value)</title>
      <link>https://community.qlik.com/t5/QlikView/if-value-x-NULL-value/m-p/892814#M996466</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sasidhar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The only option in Actionss that I have is "Mark as Helpful."&amp;nbsp; I'm definitely missing something simple.&amp;nbsp; How do I "close the thread?"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;Greg&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Jul 2015 18:27:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/if-value-x-NULL-value/m-p/892814#M996466</guid>
      <dc:creator />
      <dc:date>2015-07-08T18:27:06Z</dc:date>
    </item>
    <item>
      <title>Re: if(value=x,NULL,value)</title>
      <link>https://community.qlik.com/t5/QlikView/if-value-x-NULL-value/m-p/892815#M996467</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you should see a correct answer button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Jul 2015 19:00:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/if-value-x-NULL-value/m-p/892815#M996467</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2015-07-08T19:00:13Z</dc:date>
    </item>
    <item>
      <title>Re: if(value=x,NULL,value)</title>
      <link>https://community.qlik.com/t5/QlikView/if-value-x-NULL-value/m-p/892816#M996468</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG alt="QlikCommunity_Thread_171395_Pic1.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/92300_QlikCommunity_Thread_171395_Pic1.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Jul 2015 19:23:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/if-value-x-NULL-value/m-p/892816#M996468</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2015-07-08T19:23:43Z</dc:date>
    </item>
    <item>
      <title>Re: if(value=x,NULL,value)</title>
      <link>https://community.qlik.com/t5/QlikView/if-value-x-NULL-value/m-p/892817#M996469</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I was looking at the thread in My Inbox, and the Correct Answer option wasn't displaying there.&amp;nbsp; Opening it in a new tab, made it display.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jul 2015 15:01:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/if-value-x-NULL-value/m-p/892817#M996469</guid>
      <dc:creator />
      <dc:date>2015-07-14T15:01:20Z</dc:date>
    </item>
  </channel>
</rss>

