<?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: Regarding Null in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Regarding-Null/m-p/764815#M1047937</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;dear all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want both in my record null record as well as contains Value record what shoud i have to do ,,,please tell its urgent...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sarfaraz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 18 Nov 2014 08:52:45 GMT</pubDate>
    <dc:creator>sarfaraz_sheikh</dc:creator>
    <dc:date>2014-11-18T08:52:45Z</dc:date>
    <item>
      <title>Regarding Null</title>
      <link>https://community.qlik.com/t5/QlikView/Regarding-Null/m-p/764809#M1047921</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;&lt;/P&gt;&lt;P&gt;When i am writing the Or after IsNull(DD_TYPE) then it is fetching the rows....but when i am writing "and" after IsNull(DD_TYPE) nothing is getting fetched ....i dont know what happming exactly .....is i am doing wrong please suggest me right answer....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below is my code ...i want all the null&amp;nbsp; records in my report ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IsNull(DD_TYPE) and&lt;/P&gt;&lt;P&gt;WildMatch(DD_TYPE,'EN','NB','RW','RO','UC')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reply its urgent ......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sarfaraz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2014 08:22:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Regarding-Null/m-p/764809#M1047921</guid>
      <dc:creator>sarfaraz_sheikh</dc:creator>
      <dc:date>2014-11-18T08:22:47Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Null</title>
      <link>https://community.qlik.com/t5/QlikView/Regarding-Null/m-p/764810#M1047923</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Sarfaraz,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Correct me if I am wrong but, if DD_TYPE is null, it will never match any value like 'EN', 'NB' os something similar, because it is a null value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hth.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2014 08:25:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Regarding-Null/m-p/764810#M1047923</guid>
      <dc:creator>salto</dc:creator>
      <dc:date>2014-11-18T08:25:19Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Null</title>
      <link>https://community.qlik.com/t5/QlikView/Regarding-Null/m-p/764811#M1047927</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use Match Instead of WildMatch&lt;/P&gt;&lt;P&gt;and&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead of using IsNull Try to create a Flag for Null in Script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If(IsNull(DD_TYPE) or Len(Trim(Replace(DD_TYPE,'-','')))=0, 1, 0) as DDTypeNullFlag&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;......&lt;/P&gt;&lt;P&gt;Also, use&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;If(IsNull(DD_TYPE)) &lt;STRONG&gt;OR&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;If(WildMatch(DD_TYPE,'EN','NB','RW','RO','UC'))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2014 08:25:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Regarding-Null/m-p/764811#M1047927</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2014-11-18T08:25:59Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Null</title>
      <link>https://community.qlik.com/t5/QlikView/Regarding-Null/m-p/764812#M1047932</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The data in a field will be either 'Null' or a value. But can not be both.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what ever we use WildMatch or Match..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And so in AND condition both the conditions are not satisfied. so showing no rows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;only in OR condition we its possible to get some records.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2014 08:30:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Regarding-Null/m-p/764812#M1047932</guid>
      <dc:creator>vardhancse</dc:creator>
      <dc:date>2014-11-18T08:30:19Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Null</title>
      <link>https://community.qlik.com/t5/QlikView/Regarding-Null/m-p/764813#M1047935</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you want the records where DD_TYPE is NULL, you should use&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Where IsNull(DD_TYPE)&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Where Len(Trim(DD_TYPE)) = 0&lt;/P&gt;&lt;P&gt;and no additional condition. (See Jose's answer above). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you don't get the records you want, you can debug by removing this condition from the where-clause and put it in a field instead:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IsNull(DD_TYPE) as DebugField&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HIC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2014 08:32:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Regarding-Null/m-p/764813#M1047935</guid>
      <dc:creator>hic</dc:creator>
      <dc:date>2014-11-18T08:32:24Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Null</title>
      <link>https://community.qlik.com/t5/QlikView/Regarding-Null/m-p/764814#M1047936</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is this in your script or a chart expression.&amp;nbsp; Assuming script, what is in the source record.&amp;nbsp; Eg. An empty string may not return Null.&amp;nbsp; Also why are you testing IsNull and Wildmatch.&amp;nbsp; What is in the source and what are you trying to achieve.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If a record was Null and so true, then wildmatch would find no match and return 0 which is interpreted as false.&amp;nbsp; So can never satisfy the AND.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2014 08:35:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Regarding-Null/m-p/764814#M1047936</guid>
      <dc:creator>michael_anthony</dc:creator>
      <dc:date>2014-11-18T08:35:21Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Null</title>
      <link>https://community.qlik.com/t5/QlikView/Regarding-Null/m-p/764815#M1047937</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;dear all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want both in my record null record as well as contains Value record what shoud i have to do ,,,please tell its urgent...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sarfaraz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2014 08:52:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Regarding-Null/m-p/764815#M1047937</guid>
      <dc:creator>sarfaraz_sheikh</dc:creator>
      <dc:date>2014-11-18T08:52:45Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Null</title>
      <link>https://community.qlik.com/t5/QlikView/Regarding-Null/m-p/764816#M1047938</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you want both records with NULL and records with an other value, you should use OR (what you initially suggested):&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;IsNull(DD_TYPE) or WildMatch(DD_TYPE,'EN','NB','RW','RO','UC')&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;HIC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2014 09:03:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Regarding-Null/m-p/764816#M1047938</guid>
      <dc:creator>hic</dc:creator>
      <dc:date>2014-11-18T09:03:35Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Null</title>
      <link>https://community.qlik.com/t5/QlikView/Regarding-Null/m-p/764817#M1047939</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;Can you explain your requirement with example?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It looks easy to solve.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2014 09:12:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Regarding-Null/m-p/764817#M1047939</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2014-11-18T09:12:03Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Null</title>
      <link>https://community.qlik.com/t5/QlikView/Regarding-Null/m-p/764818#M1047940</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You are write mr. henric.....but how i can identify that the particula recontans null value....because i am unable to find the null records in application......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sarfaraz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2014 09:26:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Regarding-Null/m-p/764818#M1047940</guid>
      <dc:creator>sarfaraz_sheikh</dc:creator>
      <dc:date>2014-11-18T09:26:06Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Null</title>
      <link>https://community.qlik.com/t5/QlikView/Regarding-Null/m-p/764819#M1047941</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;my requirement is&amp;nbsp; how i can recognise the null records in table ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sarfaraz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2014 09:28:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Regarding-Null/m-p/764819#M1047941</guid>
      <dc:creator>sarfaraz_sheikh</dc:creator>
      <dc:date>2014-11-18T09:28:33Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Null</title>
      <link>https://community.qlik.com/t5/QlikView/Regarding-Null/m-p/764820#M1047942</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Create a couple of Debug fields that will help you understand your data, e.g.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; IsNull(DD_TYPE) as DebugField1,&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;&amp;nbsp;&amp;nbsp;&amp;nbsp; Len(Trim(DD_TYPE)) as DebugField2,&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;&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;"&gt;and use the following where clause:&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;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Len(Trim(DD_TYPE))=0&lt;/SPAN&gt; or WildMatch(DD_TYPE,'EN','NB','RW','RO','UC')&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;&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;"&gt;The "&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Len(Trim(DD_TYPE))=0&lt;/SPAN&gt;" may be a better condition than IsNull(), since you could have records that are empty but still not NULL.&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;&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;"&gt;HIC&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2014 09:30:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Regarding-Null/m-p/764820#M1047942</guid>
      <dc:creator>hic</dc:creator>
      <dc:date>2014-11-18T09:30:48Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Null</title>
      <link>https://community.qlik.com/t5/QlikView/Regarding-Null/m-p/764821#M1047944</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;At the script level,create one field in the table that satisfies&amp;nbsp; your condition ,take a look at the following example: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*************************************************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:&lt;/P&gt;&lt;P&gt;LOAD name, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DD_TYPE&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;data.xls&lt;/P&gt;&lt;P&gt;(biff, embedded labels, table is Sheet1$);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data1:&lt;/P&gt;&lt;P&gt;load name,DD_TYPE,&lt;/P&gt;&lt;P&gt;if(IsNull(DD_TYPE) or WildMatch(DD_TYPE,'EN','NB','RW','RO','UC'),1,0) as test&lt;/P&gt;&lt;P&gt;resident data;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;drop table data;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;************************************************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then in the front end ,create one chart having following&amp;nbsp; expression&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;only({&amp;lt;test={1}&amp;gt;}name)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; You will get what you are looking for but make sure field 'name' must not contain any&amp;nbsp; null values .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Geeta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2014 10:22:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Regarding-Null/m-p/764821#M1047944</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-11-18T10:22:20Z</dc:date>
    </item>
  </channel>
</rss>

