<?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: Remove nulls from a table in Data Quality</title>
    <link>https://community.qlik.com/t5/Data-Quality/Remove-nulls-from-a-table/m-p/2539557#M4337</link>
    <description>&lt;P&gt;You can try with this&amp;nbsp;&lt;/P&gt;&lt;P&gt;Alt(Measure,0)&lt;/P&gt;</description>
    <pubDate>Thu, 18 Dec 2025 15:09:17 GMT</pubDate>
    <dc:creator>Nagaraju_KCS</dc:creator>
    <dc:date>2025-12-18T15:09:17Z</dc:date>
    <item>
      <title>Remove nulls from a table</title>
      <link>https://community.qlik.com/t5/Data-Quality/Remove-nulls-from-a-table/m-p/2539532#M4336</link>
      <description>&lt;P&gt;Hi! I need to replace null on a pivot table for zeros. I just been encapsulating the measure like `If(isNull(measure), 0, measure)` and It looks to works fine, but in some cases there is some troubles with some dimensions I share this example where there is still some null values even my measure is 'If(IsNull(Null()), 'null', 'not null`)&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="adecora_0-1766061866025.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/185869i6FC8805E3E7D7835/image-size/medium?v=v2&amp;amp;px=400" role="button" title="adecora_0-1766061866025.png" alt="adecora_0-1766061866025.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Why this is happening? And how I can fix it?&lt;/P&gt;</description>
      <pubDate>Thu, 18 Dec 2025 12:45:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Data-Quality/Remove-nulls-from-a-table/m-p/2539532#M4336</guid>
      <dc:creator>adecora</dc:creator>
      <dc:date>2025-12-18T12:45:52Z</dc:date>
    </item>
    <item>
      <title>Re: Remove nulls from a table</title>
      <link>https://community.qlik.com/t5/Data-Quality/Remove-nulls-from-a-table/m-p/2539557#M4337</link>
      <description>&lt;P&gt;You can try with this&amp;nbsp;&lt;/P&gt;&lt;P&gt;Alt(Measure,0)&lt;/P&gt;</description>
      <pubDate>Thu, 18 Dec 2025 15:09:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Data-Quality/Remove-nulls-from-a-table/m-p/2539557#M4337</guid>
      <dc:creator>Nagaraju_KCS</dc:creator>
      <dc:date>2025-12-18T15:09:17Z</dc:date>
    </item>
    <item>
      <title>Re: Remove nulls from a table</title>
      <link>https://community.qlik.com/t5/Data-Quality/Remove-nulls-from-a-table/m-p/2539558#M4338</link>
      <description>&lt;P&gt;This returns the measure when it has value, and zero if not.&lt;/P&gt;&lt;P&gt;=Alt(Measure, 0)&lt;/P&gt;</description>
      <pubDate>Thu, 18 Dec 2025 15:12:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Data-Quality/Remove-nulls-from-a-table/m-p/2539558#M4338</guid>
      <dc:creator>BrunPierre</dc:creator>
      <dc:date>2025-12-18T15:12:39Z</dc:date>
    </item>
    <item>
      <title>Re: Remove nulls from a table</title>
      <link>https://community.qlik.com/t5/Data-Quality/Remove-nulls-from-a-table/m-p/2539573#M4339</link>
      <description>&lt;P&gt;The problem is that neither `Alt(measure, 0)` or `If(isNull(measure), 0, measure)` works. It happens on pivot tables when a combination doesn´t exits on the orginal dataset, here a simple example&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;```&lt;/P&gt;&lt;DIV&gt;fact:&lt;/DIV&gt;&lt;DIV&gt;Load&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Dim1,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; Dim2,&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; Month,&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; Round(50 + (Rand() * 50), 2) as Value;&lt;/DIV&gt;&lt;DIV&gt;Load * Inline [&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Dim1, Dim2, Month&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; X, a, sept.&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; X, b, sept.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; X, c, sept.&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; Y, a, sept.&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; Y, b, sept.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; Y, c, sept.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; Y, a, oct.&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; Y, b, oct.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; Y, c, oct.&lt;/DIV&gt;&lt;DIV&gt;];&lt;/DIV&gt;&lt;P&gt;```&lt;/P&gt;&lt;P&gt;In this case it happens to &lt;STRONG&gt;october&lt;/STRONG&gt;&amp;nbsp;data for dimension &lt;STRONG&gt;X.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="adecora_0-1766075575697.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/185876i8097334E6241FB44/image-size/medium?v=v2&amp;amp;px=400" role="button" title="adecora_0-1766075575697.png" alt="adecora_0-1766075575697.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;It could be achieve with the new &lt;STRONG&gt;pivot table element&lt;/STRONG&gt; but user lost functionality to place dimensions on the tables as they want&lt;/P&gt;</description>
      <pubDate>Thu, 18 Dec 2025 16:34:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Data-Quality/Remove-nulls-from-a-table/m-p/2539573#M4339</guid>
      <dc:creator>adecora</dc:creator>
      <dc:date>2025-12-18T16:34:32Z</dc:date>
    </item>
  </channel>
</rss>

