<?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: filling empty cells in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/filling-empty-cells/m-p/1205617#M880935</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can either use the expression you posted or use len(VD)=0. let me know if that helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 06 Oct 2016 19:24:57 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2016-10-06T19:24:57Z</dc:date>
    <item>
      <title>filling empty cells</title>
      <link>https://community.qlik.com/t5/QlikView/filling-empty-cells/m-p/1205613#M880931</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;in a table I use the formular&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="jive-pre"&gt;=round(Sum({&amp;lt;endyear={$(=max(endyear))}&amp;gt;} VD)/Count({&amp;lt;endyear={$(=max(endyear))}&amp;gt;} distinct Productnumber),'0,1')&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;some cells have no value, are empty.&lt;/P&gt;&lt;P&gt;But I need a 0 instead an empty cell.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Icon in the Table-Menue to showt nullvaliues doesn't work and the skript is very complicated. So I search for a solution in this specific table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/filling-empty-cells/m-p/1205613#M880931</guid>
      <dc:creator />
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: filling empty cells</title>
      <link>https://community.qlik.com/t5/QlikView/filling-empty-cells/m-p/1205614#M880932</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be use these settings on the presentation tab of the chart properties&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/139902_Capture.PNG" style="height: 551px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Oct 2016 17:57:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/filling-empty-cells/m-p/1205614#M880932</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-10-06T17:57:21Z</dc:date>
    </item>
    <item>
      <title>Re: filling empty cells</title>
      <link>https://community.qlik.com/t5/QlikView/filling-empty-cells/m-p/1205615#M880933</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sometimes if above option does not work then implement this if statement. If (len(feild)=0,0,yourexpression)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Oct 2016 18:35:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/filling-empty-cells/m-p/1205615#M880933</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-10-06T18:35:00Z</dc:date>
    </item>
    <item>
      <title>Re: filling empty cells</title>
      <link>https://community.qlik.com/t5/QlikView/filling-empty-cells/m-p/1205616#M880934</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;like this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(len(Sum({&amp;lt;endyear={$(=max(endyear))}&amp;gt;} VD)/Count({&amp;lt;endyear={$(=max(endyear))}&amp;gt;} distinct Productnumber) = 0,0, round(Sum({&amp;lt;endyear={$(=max(endyear))}&amp;gt;} VD)/Count({&amp;lt;endyear={$(=max(endyear))}&amp;gt;} distinct Productnumber),'0,1')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or what do you mean with len(field)?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Oct 2016 18:56:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/filling-empty-cells/m-p/1205616#M880934</guid>
      <dc:creator />
      <dc:date>2016-10-06T18:56:05Z</dc:date>
    </item>
    <item>
      <title>Re: filling empty cells</title>
      <link>https://community.qlik.com/t5/QlikView/filling-empty-cells/m-p/1205617#M880935</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can either use the expression you posted or use len(VD)=0. let me know if that helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Oct 2016 19:24:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/filling-empty-cells/m-p/1205617#M880935</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-10-06T19:24:57Z</dc:date>
    </item>
    <item>
      <title>Re: filling empty cells</title>
      <link>https://community.qlik.com/t5/QlikView/filling-empty-cells/m-p/1205618#M880936</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;tomorrow in the office I try this and then tell you if it works.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Oct 2016 19:30:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/filling-empty-cells/m-p/1205618#M880936</guid>
      <dc:creator />
      <dc:date>2016-10-06T19:30:32Z</dc:date>
    </item>
  </channel>
</rss>

