<?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: Removing Rows with Nulls in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Removing-Rows-with-Nulls/m-p/331585#M1175068</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When you say "script", it makes me think of when you are initially loading the data into QlikView.&amp;nbsp; The advice I gave is used in the chart design stage.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I understand what you are saying, and you are designing a chart, then put all of those expressions into the hidden column I mentioned in the third part of my previous post.&amp;nbsp; I think something like the following would be helpful:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If(&lt;/P&gt;&lt;P&gt;IsNull(Expr1) = 0 AND IsNull(Expr2) = 0 AND IsNull(Expr3) = 0 ...etc.,&lt;/P&gt;&lt;P&gt;True(),&lt;/P&gt;&lt;P&gt;Null()&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 12 Jun 2012 13:52:01 GMT</pubDate>
    <dc:creator />
    <dc:date>2012-06-12T13:52:01Z</dc:date>
    <item>
      <title>Removing Rows with Nulls</title>
      <link>https://community.qlik.com/t5/QlikView/Removing-Rows-with-Nulls/m-p/331574#M1175057</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good afternoon, ive got a situation where I am getting nulls in some of my fields, I know why they are there and it doesnt matter. My Flat table data is a mix of Dimension data and Expression data. How do I go about excluding an entire row from my flat table if a field has a Null value in it please?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Very Kind regards.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Paul.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2012 12:25:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Removing-Rows-with-Nulls/m-p/331574#M1175057</guid>
      <dc:creator />
      <dc:date>2012-05-31T12:25:12Z</dc:date>
    </item>
    <item>
      <title>Removing Rows with Nulls</title>
      <link>https://community.qlik.com/t5/QlikView/Removing-Rows-with-Nulls/m-p/331575#M1175058</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Load ... from ... where not IsNull(field) ;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;Load ... from ... where Len(Trim(field))&amp;gt;0 ;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2012 12:32:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Removing-Rows-with-Nulls/m-p/331575#M1175058</guid>
      <dc:creator>hic</dc:creator>
      <dc:date>2012-05-31T12:32:57Z</dc:date>
    </item>
    <item>
      <title>Removing Rows with Nulls</title>
      <link>https://community.qlik.com/t5/QlikView/Removing-Rows-with-Nulls/m-p/331576#M1175059</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hi Henric, thanks for the response, the particular field that has the null value is not calculated in the script its an expression that loads all relative data including nulls. I want qlikview to not load rows where any row contains a null either in dimension or expression.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2012 12:38:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Removing-Rows-with-Nulls/m-p/331576#M1175059</guid>
      <dc:creator />
      <dc:date>2012-05-31T12:38:30Z</dc:date>
    </item>
    <item>
      <title>Removing Rows with Nulls</title>
      <link>https://community.qlik.com/t5/QlikView/Removing-Rows-with-Nulls/m-p/331577#M1175060</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not sure I understand... &lt;/P&gt;&lt;P&gt;If you do not want QlikVIew to load these records, then you should use a where clause in the script where the condition tests for NULL.&lt;/P&gt;&lt;P&gt;If you, on the other hand, want QlikView to load all records but just use some of the records for a specific calculation, then you can use a similar condition inside the calculation i.e. inside the aggregation function, e.g. &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Sum( if(not IsNull(field), Amount) ) &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Sum( {$&amp;lt;field={"*"}&amp;gt;} Amount )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HIC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2012 12:50:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Removing-Rows-with-Nulls/m-p/331577#M1175060</guid>
      <dc:creator>hic</dc:creator>
      <dc:date>2012-05-31T12:50:49Z</dc:date>
    </item>
    <item>
      <title>Removing Rows with Nulls</title>
      <link>https://community.qlik.com/t5/QlikView/Removing-Rows-with-Nulls/m-p/331578#M1175061</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Heric, Here is the script for the table I am using :-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data_table:&lt;/P&gt;&lt;P&gt;LOAD Internal_ID_For_Meter_Reading_Document, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Meter_Reading_Reason&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;**&lt;/P&gt;&lt;P&gt;where Meter_Reading_Reason='01'&lt;/P&gt;&lt;P&gt;or Meter_Reading_Reason='02'&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using an expression which shows data in the same row which conforms to either one of the 'Meter reading' conditions above, but at the same time its pulling data that doesnt fit '01 or '02' hence the null.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want the script to not load the row at all if either '01' or '02' are not fullfilled. Trouble is if I use the And instead of 'OR' No data will load at all.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2012 13:03:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Removing-Rows-with-Nulls/m-p/331578#M1175061</guid>
      <dc:creator />
      <dc:date>2012-05-31T13:03:57Z</dc:date>
    </item>
    <item>
      <title>Removing Rows with Nulls</title>
      <link>https://community.qlik.com/t5/QlikView/Removing-Rows-with-Nulls/m-p/331579#M1175062</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your Load statement looks OK. It should only load records where Meter_Reading_Reason is either '01' or '02'. But you say that it loads records where Meter_Reading_Reason is NULL?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HIC&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PS. &lt;/P&gt;&lt;P&gt;Use "... where Match(Meter_Reading_Reason,'01','02')" instead. Then it is esier to add or remove individual values.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2012 13:18:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Removing-Rows-with-Nulls/m-p/331579#M1175062</guid>
      <dc:creator>hic</dc:creator>
      <dc:date>2012-05-31T13:18:48Z</dc:date>
    </item>
    <item>
      <title>Removing Rows with Nulls</title>
      <link>https://community.qlik.com/t5/QlikView/Removing-Rows-with-Nulls/m-p/331580#M1175063</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; I like the use of 'Match' very efficient way of doing it, however its still loading a row if an expression contains a value that relates to a meter reason thats not '01' or '02' but when I try and load the expression and tell it to oly load what I want for example :- &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FirstSortedValue(Meter_Reading,-Meter_Reading_Date,3) and Meter_Reading_Reason='01' or Meter_Reading_Reason='02' it makes all values in that table a zero. Am at a loss as to why this is happening!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2012 14:24:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Removing-Rows-with-Nulls/m-p/331580#M1175063</guid>
      <dc:creator />
      <dc:date>2012-05-31T14:24:07Z</dc:date>
    </item>
    <item>
      <title>Removing Rows with Nulls</title>
      <link>https://community.qlik.com/t5/QlikView/Removing-Rows-with-Nulls/m-p/331581#M1175064</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you post the file with a small part of the data? So we can find the problem?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HIC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2012 14:28:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Removing-Rows-with-Nulls/m-p/331581#M1175064</guid>
      <dc:creator>hic</dc:creator>
      <dc:date>2012-05-31T14:28:32Z</dc:date>
    </item>
    <item>
      <title>Removing Rows with Nulls</title>
      <link>https://community.qlik.com/t5/QlikView/Removing-Rows-with-Nulls/m-p/331582#M1175065</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Have you another table linked to this one in your datamodel ?&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vincent&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2012 14:35:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Removing-Rows-with-Nulls/m-p/331582#M1175065</guid>
      <dc:creator>vincent_ardiet</dc:creator>
      <dc:date>2012-05-31T14:35:07Z</dc:date>
    </item>
    <item>
      <title>Removing Rows with Nulls</title>
      <link>https://community.qlik.com/t5/QlikView/Removing-Rows-with-Nulls/m-p/331583#M1175066</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To suppress dimensions where all expressions result in NULL, go to the "Presentation" tab and check the box for "Suppress Missing".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To suppress expressions where the dimension is NULL, go to the "Dimensions" and, for that dimension, and check the box for "Suppress When Value Is Null".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To hide a dimension based on a more advanced criteria, such as a specific expression returning NULL (ignoring the results of the other expressions), create a new calculated dimension with that expression.&amp;nbsp; For that dimension, check the box for "Suppress When Value Is Null".&amp;nbsp; Finally, go to "Presentation", and, for that column, select the option for "Hide Column", which will prevent it from showing.&amp;nbsp; That allows you to have advanced control over the display of dimensions by hiding any rows where the dimension returns NULL, which can occur for any reason you want.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2012 18:02:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Removing-Rows-with-Nulls/m-p/331583#M1175066</guid>
      <dc:creator />
      <dc:date>2012-06-11T18:02:41Z</dc:date>
    </item>
    <item>
      <title>Re: Removing Rows with Nulls</title>
      <link>https://community.qlik.com/t5/QlikView/Removing-Rows-with-Nulls/m-p/331584#M1175067</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the response, I am trying to Not load a row if any of the expression fields are Null, all Dimension fields in my script will contain 0 Nulls.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jun 2012 10:38:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Removing-Rows-with-Nulls/m-p/331584#M1175067</guid>
      <dc:creator />
      <dc:date>2012-06-12T10:38:44Z</dc:date>
    </item>
    <item>
      <title>Re: Removing Rows with Nulls</title>
      <link>https://community.qlik.com/t5/QlikView/Removing-Rows-with-Nulls/m-p/331585#M1175068</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When you say "script", it makes me think of when you are initially loading the data into QlikView.&amp;nbsp; The advice I gave is used in the chart design stage.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I understand what you are saying, and you are designing a chart, then put all of those expressions into the hidden column I mentioned in the third part of my previous post.&amp;nbsp; I think something like the following would be helpful:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If(&lt;/P&gt;&lt;P&gt;IsNull(Expr1) = 0 AND IsNull(Expr2) = 0 AND IsNull(Expr3) = 0 ...etc.,&lt;/P&gt;&lt;P&gt;True(),&lt;/P&gt;&lt;P&gt;Null()&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jun 2012 13:52:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Removing-Rows-with-Nulls/m-p/331585#M1175068</guid>
      <dc:creator />
      <dc:date>2012-06-12T13:52:01Z</dc:date>
    </item>
    <item>
      <title>Re: Removing Rows with Nulls</title>
      <link>https://community.qlik.com/t5/QlikView/Removing-Rows-with-Nulls/m-p/331586#M1175069</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am having the same problem with my straight table and i tried to supress missing but no change. I am trying the hide dimensions where my expressions are '-'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Nov 2012 17:31:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Removing-Rows-with-Nulls/m-p/331586#M1175069</guid>
      <dc:creator>hirenp0904</dc:creator>
      <dc:date>2012-11-05T17:31:13Z</dc:date>
    </item>
    <item>
      <title>Re: Removing Rows with Nulls</title>
      <link>https://community.qlik.com/t5/QlikView/Removing-Rows-with-Nulls/m-p/331587#M1175070</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The suppress missing on the Presentation makes the chart suppress values where the &lt;EM&gt;&lt;STRONG&gt;expression&lt;/STRONG&gt;&lt;/EM&gt; has a missing value. But you want to do it where the &lt;STRONG&gt;&lt;EM&gt;dimension &lt;/EM&gt;&lt;/STRONG&gt;has a missing (Null) value. You should set this on Chart properties -&amp;gt; Dimensions -&amp;gt; Suppress when value is Null.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HIC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Nov 2012 18:01:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Removing-Rows-with-Nulls/m-p/331587#M1175070</guid>
      <dc:creator>hic</dc:creator>
      <dc:date>2012-11-05T18:01:16Z</dc:date>
    </item>
    <item>
      <title>Re: Removing Rows with Nulls</title>
      <link>https://community.qlik.com/t5/QlikView/Removing-Rows-with-Nulls/m-p/331588#M1175071</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Henric,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually i want to supress row where my expression has missing / null / blank value. My dimensions do not have any null values. However i tried with both the options but no luck.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Nov 2012 18:37:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Removing-Rows-with-Nulls/m-p/331588#M1175071</guid>
      <dc:creator>hirenp0904</dc:creator>
      <dc:date>2012-11-05T18:37:36Z</dc:date>
    </item>
    <item>
      <title>Re: Removing Rows with Nulls</title>
      <link>https://community.qlik.com/t5/QlikView/Removing-Rows-with-Nulls/m-p/1536230#M1175072</link>
      <description>&lt;P&gt;Works! Thank you.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jan 2019 23:03:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Removing-Rows-with-Nulls/m-p/1536230#M1175072</guid>
      <dc:creator>swarnav999</dc:creator>
      <dc:date>2019-01-28T23:03:51Z</dc:date>
    </item>
  </channel>
</rss>

