<?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: Convert null values to zeros in the export in Reporting Service &amp; Alerting</title>
    <link>https://community.qlik.com/t5/Reporting-Service-Alerting/Convert-null-values-to-zeros-in-the-export/m-p/1916420#M141</link>
    <description>&lt;P&gt;For example your. Expression is sum(fieldname)&lt;/P&gt;
&lt;P&gt;So use like&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sum( if( isnull(fieldname),0,fieldname))&lt;/P&gt;
&lt;P&gt;Same for all expression&lt;/P&gt;</description>
    <pubDate>Fri, 08 Apr 2022 16:33:52 GMT</pubDate>
    <dc:creator>SunilChauhan</dc:creator>
    <dc:date>2022-04-08T16:33:52Z</dc:date>
    <item>
      <title>Convert null values to zeros in the export</title>
      <link>https://community.qlik.com/t5/Reporting-Service-Alerting/Convert-null-values-to-zeros-in-the-export/m-p/1916208#M138</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;When I export a file from Qlik to Excel, all of my Null values are converted to ' - ' in my file, which is completely normal.&lt;/P&gt;
&lt;P&gt;Problem is I want '0' instead of '-'.&amp;nbsp; Is there a way to modify the way Qlik interprets Nulls during the extraction to convert them to '0' ?&lt;/P&gt;
&lt;P&gt;It is impossible for me to deal with it from Excel, because with 'Ctrl+h' it also replaces the minus signs...&lt;BR /&gt;Thank you for your help&lt;/P&gt;
&lt;P&gt;Lucas&lt;/P&gt;</description>
      <pubDate>Fri, 08 Apr 2022 10:31:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Reporting-Service-Alerting/Convert-null-values-to-zeros-in-the-export/m-p/1916208#M138</guid>
      <dc:creator>lucas3</dc:creator>
      <dc:date>2022-04-08T10:31:45Z</dc:date>
    </item>
    <item>
      <title>Re: Convert null values to zeros in the export</title>
      <link>https://community.qlik.com/t5/Reporting-Service-Alerting/Convert-null-values-to-zeros-in-the-export/m-p/1916420#M141</link>
      <description>&lt;P&gt;For example your. Expression is sum(fieldname)&lt;/P&gt;
&lt;P&gt;So use like&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sum( if( isnull(fieldname),0,fieldname))&lt;/P&gt;
&lt;P&gt;Same for all expression&lt;/P&gt;</description>
      <pubDate>Fri, 08 Apr 2022 16:33:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Reporting-Service-Alerting/Convert-null-values-to-zeros-in-the-export/m-p/1916420#M141</guid>
      <dc:creator>SunilChauhan</dc:creator>
      <dc:date>2022-04-08T16:33:52Z</dc:date>
    </item>
    <item>
      <title>Re: Convert null values to zeros in the export</title>
      <link>https://community.qlik.com/t5/Reporting-Service-Alerting/Convert-null-values-to-zeros-in-the-export/m-p/1916992#M144</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;Thank you for your answer and sorry for the late reply !&lt;/P&gt;
&lt;P&gt;I could do this but this technique implies I would have to go through all my chart again and I have around 20 columns... Isn't there a more convenient way ?&lt;/P&gt;
&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Mon, 11 Apr 2022 16:04:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Reporting-Service-Alerting/Convert-null-values-to-zeros-in-the-export/m-p/1916992#M144</guid>
      <dc:creator>lucas3</dc:creator>
      <dc:date>2022-04-11T16:04:52Z</dc:date>
    </item>
    <item>
      <title>Re: Convert null values to zeros in the export</title>
      <link>https://community.qlik.com/t5/Reporting-Service-Alerting/Convert-null-values-to-zeros-in-the-export/m-p/1917945#M155</link>
      <description>&lt;P&gt;application level we can do like below&lt;/P&gt;
&lt;P class="Code" data-mc-conditions="Targets.NotToTranslate"&gt;NullAsValue A,B;&lt;/P&gt;
&lt;P class="Code" data-mc-conditions="Targets.NotToTranslate"&gt;Set NullValue = 'NULL';&lt;/P&gt;
&lt;P class="Code" data-mc-conditions="Targets.NotToTranslate"&gt;LOAD A,B from x.csv;&lt;/P&gt;
&lt;P class="Code" data-mc-conditions="Targets.NotToTranslate"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="Code" data-mc-conditions="Targets.NotToTranslate"&gt;you can have any no of values comma seperated like A,B,......&lt;/P&gt;
&lt;P class="Code" data-mc-conditions="Targets.NotToTranslate"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="Code" data-mc-conditions="Targets.NotToTranslate"&gt;NullAsValue A,B,C,D;&lt;/P&gt;
&lt;P class="Code" data-mc-conditions="Targets.NotToTranslate"&gt;Set NullValue = 'NULL';&lt;/P&gt;
&lt;P class="Code" data-mc-conditions="Targets.NotToTranslate"&gt;NullAsValue A,B;&lt;/P&gt;
&lt;P class="Code" data-mc-conditions="Targets.NotToTranslate"&gt;Set NullValue = 'NULL';&lt;/P&gt;
&lt;P class="Code" data-mc-conditions="Targets.NotToTranslate"&gt;LOAD A,B from&lt;STRONG&gt; x.csv;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P class="Code" data-mc-conditions="Targets.NotToTranslate"&gt;Load C, D From &lt;STRONG&gt;y.csv&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Apr 2022 10:40:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Reporting-Service-Alerting/Convert-null-values-to-zeros-in-the-export/m-p/1917945#M155</guid>
      <dc:creator>SunilChauhan</dc:creator>
      <dc:date>2022-04-13T10:40:18Z</dc:date>
    </item>
    <item>
      <title>Re: Convert null values to zeros in the export</title>
      <link>https://community.qlik.com/t5/Reporting-Service-Alerting/Convert-null-values-to-zeros-in-the-export/m-p/1919224#M162</link>
      <description>&lt;P&gt;you will have to modify your expressions, there is no other option&lt;/P&gt;
&lt;P&gt;replacing null values to 0 or something else will not work on instances where value is null where there is no relevant data&lt;/P&gt;
&lt;P&gt;for example in dimension table dimension1 has values a,b,c,d&amp;nbsp; but fact only has data for a,b,c&lt;/P&gt;
&lt;P&gt;in this case value for "d" will always be null in your charts, since no data exists&lt;/P&gt;
&lt;P&gt;So modifying expressions to&lt;/P&gt;
&lt;P&gt;&amp;nbsp; if(sum(Xyz),sum(Xyz),sum(0))&amp;nbsp;&lt;/P&gt;
&lt;P&gt;is the best way&lt;/P&gt;</description>
      <pubDate>Mon, 18 Apr 2022 07:20:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Reporting-Service-Alerting/Convert-null-values-to-zeros-in-the-export/m-p/1919224#M162</guid>
      <dc:creator>vinieme12</dc:creator>
      <dc:date>2022-04-18T07:20:21Z</dc:date>
    </item>
    <item>
      <title>Re: Convert null values to zeros in the export</title>
      <link>https://community.qlik.com/t5/Reporting-Service-Alerting/Convert-null-values-to-zeros-in-the-export/m-p/2521733#M2446</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;i have the same issue. I know i need to edit the expression to do the if statement. But i concern about the performance of the dashboard. My expression is too long, i afraid i put the if statement, it will impact the chart to calculate the expression.&amp;nbsp;&lt;BR /&gt;I wonder if there is any ways to do this.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;FT&lt;/P&gt;</description>
      <pubDate>Thu, 19 Jun 2025 13:01:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Reporting-Service-Alerting/Convert-null-values-to-zeros-in-the-export/m-p/2521733#M2446</guid>
      <dc:creator>fatinfazrizanor</dc:creator>
      <dc:date>2025-06-19T13:01:53Z</dc:date>
    </item>
  </channel>
</rss>

