<?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: How to show result from expression when it is null in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-show-result-from-expression-when-it-is-null/m-p/976013#M333651</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you uncheck Suppress Zero Values, then you don't need any complexity. This expression&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #0000ff;"&gt;=sum&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #800000;"&gt;[UNIT PRICE USD]&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;*&lt;/SPAN&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #800000;"&gt;QUANTITY&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&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; font-size: 13px;"&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; font-size: 13px;"&gt;will return a null if either field is null, nd this will render as '-' as required.&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; font-size: 13px;"&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; font-size: 13px;"&gt;If that does not work, then the values are not &lt;EM&gt;null,&lt;/EM&gt; they are &lt;EM&gt;missing&lt;/EM&gt; (ie there is no instance of at least one of these fields &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;for that row combination of dimension values) and you will need the Populate Missing Cells option. The only other solution then is to consider model changes to resolve the missing values.&lt;/SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 14 Oct 2015 12:24:11 GMT</pubDate>
    <dc:creator>jonathandienst</dc:creator>
    <dc:date>2015-10-14T12:24:11Z</dc:date>
    <item>
      <title>How to show result from expression when it is null</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-show-result-from-expression-when-it-is-null/m-p/976003#M333641</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;My chart is quite simple: first column with customer, second column with products, third is the turnover.&lt;/P&gt;&lt;P&gt;Turnover is calculated by the expression &lt;SPAN style="color: #0000ff;"&gt;sum&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;[UNIT PRICE USD]&lt;/SPAN&gt;*&lt;SPAN style="color: #800000;"&gt;QUANTITY&lt;/SPAN&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to show the result through a "-" when the Customer never bought that specific product.&lt;/P&gt;&lt;P&gt;Expression automatically hides the value when sales and quantity are null (they do not exist because customer never bought).&lt;/P&gt;&lt;P&gt;I tried with IsNull but probably there is something I am handling wrong&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;if&lt;/SPAN&gt;(&lt;SPAN style="color: #0000ff;"&gt;IsNull&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;QUANTITY&lt;/SPAN&gt;) &lt;SPAN style="color: #0000ff;"&gt;or&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;IsNull&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;[UNIT PRICE USD]&lt;/SPAN&gt;),'-',&lt;SPAN style="color: #0000ff;"&gt;sum&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;[UNIT PRICE USD]&lt;/SPAN&gt;*&lt;SPAN style="color: #800000;"&gt;QUANTITY&lt;/SPAN&gt;))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note:&lt;/P&gt;&lt;P&gt;Second column is populated with the list of all available product.&lt;/P&gt;&lt;P&gt;For what concern dimensions, I deselected "suppress when value is null" into chart properties.&lt;/P&gt;&lt;P&gt;but it does not work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Oct 2015 09:31:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-show-result-from-expression-when-it-is-null/m-p/976003#M333641</guid>
      <dc:creator />
      <dc:date>2015-10-14T09:31:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to show result from expression when it is null</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-show-result-from-expression-when-it-is-null/m-p/976004#M333642</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Go to&amp;gt;Chart Properties&amp;gt; Presentation&amp;gt; un check the suppress missing&amp;nbsp; option &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Oct 2015 09:33:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-show-result-from-expression-when-it-is-null/m-p/976004#M333642</guid>
      <dc:creator>avinashelite</dc:creator>
      <dc:date>2015-10-14T09:33:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to show result from expression when it is null</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-show-result-from-expression-when-it-is-null/m-p/976005#M333643</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Massimo, this document can help you: &lt;A href="https://community.qlik.com/docs/DOC-3786"&gt;Generating Missing Data In QlikView&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Check the section about "Generating all combinations of several fields"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Oct 2015 09:38:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-show-result-from-expression-when-it-is-null/m-p/976005#M333643</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2015-10-14T09:38:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to show result from expression when it is null</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-show-result-from-expression-when-it-is-null/m-p/976006#M333644</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13.3333px;"&gt;Hi,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;This app will help u out.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;in chart properties &amp;gt; Presentaion&amp;gt; uncheck supress zeros and null for both dimensions and expressions.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;thanks,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;bunny !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Oct 2015 09:52:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-show-result-from-expression-when-it-is-null/m-p/976006#M333644</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-10-14T09:52:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to show result from expression when it is null</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-show-result-from-expression-when-it-is-null/m-p/976007#M333645</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;Please try this expression:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=sum(if(isnull([UNIT PRICE USD]),0,[UNIT PRICE USD])*if(isnull(QUANTITY),0,QUANTITY))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Raghvendra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Oct 2015 09:53:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-show-result-from-expression-when-it-is-null/m-p/976007#M333645</guid>
      <dc:creator>raghvendrasingh</dc:creator>
      <dc:date>2015-10-14T09:53:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to show result from expression when it is null</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-show-result-from-expression-when-it-is-null/m-p/976008#M333646</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I do not have this option available in Presentation.&lt;/P&gt;&lt;P&gt;I can find something similar in Dimension but they are already unselected.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Oct 2015 11:46:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-show-result-from-expression-when-it-is-null/m-p/976008#M333646</guid>
      <dc:creator />
      <dc:date>2015-10-14T11:46:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to show result from expression when it is null</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-show-result-from-expression-when-it-is-null/m-p/976009#M333647</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can you share your app &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Oct 2015 12:03:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-show-result-from-expression-when-it-is-null/m-p/976009#M333647</guid>
      <dc:creator>avinashelite</dc:creator>
      <dc:date>2015-10-14T12:03:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to show result from expression when it is null</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-show-result-from-expression-when-it-is-null/m-p/976010#M333648</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ruben,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for the document. It is very helpful but I am not sure it helps for my scope.&lt;/P&gt;&lt;P&gt;I think I have to work on the expression...but I may be wrong.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let attach the schematic table to better explain.&lt;/P&gt;&lt;P&gt;Products are listed in a separate file which contains all the products.&lt;/P&gt;&lt;P&gt;Value and customer come from a second file. There is only the list of products bought by a customer. (In this table could be not clear but a single customer could be present several times even with the same product if he bought them in different periods.)&lt;/P&gt;&lt;P&gt;TOTAL VALUE comes from the expression.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/102008_pastedImage_0.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Oct 2015 12:12:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-show-result-from-expression-when-it-is-null/m-p/976010#M333648</guid>
      <dc:creator />
      <dc:date>2015-10-14T12:12:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to show result from expression when it is null</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-show-result-from-expression-when-it-is-null/m-p/976011#M333649</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Unfortunately data are sensible and I cannot share it. I think that example provided below to Ruben could help to understand.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Oct 2015 12:14:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-show-result-from-expression-when-it-is-null/m-p/976011#M333649</guid>
      <dc:creator />
      <dc:date>2015-10-14T12:14:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to show result from expression when it is null</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-show-result-from-expression-when-it-is-null/m-p/976012#M333650</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try uncheck suppress when value is NULL for both dimension.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also uncheck suppress Zero- value in Presentation tab&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Oct 2015 12:19:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-show-result-from-expression-when-it-is-null/m-p/976012#M333650</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2015-10-14T12:19:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to show result from expression when it is null</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-show-result-from-expression-when-it-is-null/m-p/976013#M333651</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you uncheck Suppress Zero Values, then you don't need any complexity. This expression&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #0000ff;"&gt;=sum&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #800000;"&gt;[UNIT PRICE USD]&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;*&lt;/SPAN&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #800000;"&gt;QUANTITY&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&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; font-size: 13px;"&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; font-size: 13px;"&gt;will return a null if either field is null, nd this will render as '-' as required.&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; font-size: 13px;"&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; font-size: 13px;"&gt;If that does not work, then the values are not &lt;EM&gt;null,&lt;/EM&gt; they are &lt;EM&gt;missing&lt;/EM&gt; (ie there is no instance of at least one of these fields &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;for that row combination of dimension values) and you will need the Populate Missing Cells option. The only other solution then is to consider model changes to resolve the missing values.&lt;/SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Oct 2015 12:24:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-show-result-from-expression-when-it-is-null/m-p/976013#M333651</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2015-10-14T12:24:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to show result from expression when it is null</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-show-result-from-expression-when-it-is-null/m-p/976014#M333652</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks but as I told above this is what I have for both dimensions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry for Italian language but I am sure you can understand the meaning.&lt;/P&gt;&lt;P&gt;Into presentation tab I do not have any option to select about Zero-value&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/102003_pastedImage_0.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Oct 2015 12:28:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-show-result-from-expression-when-it-is-null/m-p/976014#M333652</guid>
      <dc:creator />
      <dc:date>2015-10-14T12:28:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to show result from expression when it is null</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-show-result-from-expression-when-it-is-null/m-p/976015#M333653</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jonathan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you are probably very near the solution. Do you have any advice to give me?&lt;/P&gt;&lt;P&gt;Probably I have to work on something that works in this way:&lt;/P&gt;&lt;P&gt;For each customer check the bought products. If they are in it is ok otherwise generate a row for the customer with the missing product with a null field into value and quantity.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Am I right? Probably it is something at script level.&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, 14 Oct 2015 12:51:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-show-result-from-expression-when-it-is-null/m-p/976015#M333653</guid>
      <dc:creator />
      <dc:date>2015-10-14T12:51:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to show result from expression when it is null</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-show-result-from-expression-when-it-is-null/m-p/976016#M333654</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Massimo, if there are no relation between a Product and a Customer, QV will not draw the row for those combinations.&lt;/P&gt;&lt;P&gt;Working with ValueList you can generate all values but I don't know how to do the expression if there are too much combinations, the calculated dimension that returns all values can be:&lt;/P&gt;&lt;P&gt;=ValueList($(=Chr(39) &amp;amp; Concat(DISTINCT Product, Chr(39) &amp;amp;',' &amp;amp; Chr(39)) &amp;amp; Chr(39)))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If possible I think your best option is to generate the missing data, ie:&lt;/P&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;LOAD * Inline [&lt;/P&gt;&lt;P&gt;Customer, Product, Sales&lt;/P&gt;&lt;P&gt;A,1,8&lt;/P&gt;&lt;P&gt;B,1,3&lt;/P&gt;&lt;P&gt;B,2,4&lt;/P&gt;&lt;P&gt;B,3,5&lt;/P&gt;&lt;P&gt;C,1,5&lt;/P&gt;&lt;P&gt;C,2,4&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DataPopulated:&lt;/P&gt;&lt;P&gt;NoConcatenate LOAD Distinct Customer Resident Data;&lt;/P&gt;&lt;P&gt;Join LOAD Distinct Product, 0 as Sales Resident Data;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Concatenate (Data) LOAD * Resident DataPopulated;&lt;/P&gt;&lt;P&gt;DROP Table DataPopulated;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then you can use the expression: If(Sum(Sales)=0, '-', Sum(Sales))&lt;/P&gt;&lt;P&gt;Returns:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/102009_pastedImage_0.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Oct 2015 12:55:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-show-result-from-expression-when-it-is-null/m-p/976016#M333654</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2015-10-14T12:55:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to show result from expression when it is null</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-show-result-from-expression-when-it-is-null/m-p/976017#M333655</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One weird solution, but the peformance can be really affected, even not working at all.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From this script:&lt;/P&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;LOAD * Inline [&lt;/P&gt;&lt;P&gt;Customer, Product, Sales&lt;/P&gt;&lt;P&gt;A,1,8&lt;/P&gt;&lt;P&gt;B,1,3&lt;/P&gt;&lt;P&gt;B,2,4&lt;/P&gt;&lt;P&gt;B,3,5&lt;/P&gt;&lt;P&gt;C,1,5&lt;/P&gt;&lt;P&gt;C,2,4&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With dimensions:&lt;/P&gt;&lt;P&gt;- Customer&lt;/P&gt;&lt;P&gt;- =ValueList($(=Chr(39) &amp;amp; Concat(DISTINCT Product, Chr(39) &amp;amp;',' &amp;amp; Chr(39)) &amp;amp; Chr(39)))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And the expression:&lt;/P&gt;&lt;P&gt;$(=Concat(Aggr('If(ValueList(' &amp;amp; Chr(36) &amp;amp; '(=Chr(39) &amp;amp; Concat(DISTINCT Product, Chr(39) &amp;amp;' &amp;amp; Chr(39) &amp;amp; ',' &amp;amp; Chr(39) &amp;amp; '&amp;amp; Chr(39)) &amp;amp; Chr(39)))=' &amp;amp; Product &amp;amp; ',&lt;/P&gt;&lt;P&gt;If(Sum({&amp;lt;Product={' &amp;amp; Product &amp;amp; '}&amp;gt;} Sales)=0, ' &amp;amp; Chr(39) &amp;amp; '-' &amp;amp; Chr(39) &amp;amp; ',Sum({&amp;lt;Product={' &amp;amp; Product &amp;amp; '}&amp;gt;} Sales)),', Product)) &amp;amp; 'Null()' &amp;amp; Repeat(')', Count(TOTAL DISTINCT Product)))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Returns this:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/102010_pastedImage_0.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;P&gt;To explain the expression, when is $-expanded returns this expression:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/102014_pastedImage_1.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yep, I'm a bit idle today. &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/blush.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Oct 2015 13:41:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-show-result-from-expression-when-it-is-null/m-p/976017#M333655</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2015-10-14T13:41:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to show result from expression when it is null</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-show-result-from-expression-when-it-is-null/m-p/976018#M333656</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt;&amp;gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;For each customer check the bought products. If they are in it is ok otherwise generate a row for the customer with the missing product with a null field into value and quantity.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That's pretty much it - nulls will not affect averages, counts and sums of the facts, but be careful of counts of the dimension fields as these could change.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Oct 2015 13:45:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-show-result-from-expression-when-it-is-null/m-p/976018#M333656</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2015-10-14T13:45:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to show result from expression when it is null</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-show-result-from-expression-when-it-is-null/m-p/976019#M333657</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ruben,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this could work.&lt;/P&gt;&lt;P&gt;For each customer the script "creates" the link with all products even if they have been never bought.&lt;/P&gt;&lt;P&gt;However when the product is missing into the original table the result is ok but when the product is already existing in the original table (and this should be used) I find two rows: first with product and 0 as sales and a second row where there is the product with the correct amount. (Only this second row should be present for this product)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think there is something missing in the script.&lt;/P&gt;&lt;P&gt;DataPopulated:&lt;/P&gt;&lt;P&gt;NoConcatenate LOAD Distinct Customer Resident Data;&lt;/P&gt;&lt;P&gt;Join LOAD Distinct Product, 0 as Sales Resident Data;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Probably there should be an instruction "IF product is already existing then use it" but I do not know how to implement it into the script.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Oct 2015 16:44:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-show-result-from-expression-when-it-is-null/m-p/976019#M333657</guid>
      <dc:creator />
      <dc:date>2015-10-14T16:44:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to show result from expression when it is null</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-show-result-from-expression-when-it-is-null/m-p/976020#M333658</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, it was just an example of how to populate data, as you said, if you want to avoid the extra row you can check if the row exists:&lt;/P&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;LOAD *, &lt;STRONG&gt;Customer &amp;amp; '#' &amp;amp; Product as Key&lt;/STRONG&gt; Inline [&lt;/P&gt;&lt;P&gt;Customer, Product, Sales&lt;/P&gt;&lt;P&gt;A,1,8&lt;/P&gt;&lt;P&gt;B,1,3&lt;/P&gt;&lt;P&gt;B,2,4&lt;/P&gt;&lt;P&gt;B,3,5&lt;/P&gt;&lt;P&gt;C,1,5&lt;/P&gt;&lt;P&gt;C,2,4&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DataPopulated:&lt;/P&gt;&lt;P&gt;NoConcatenate LOAD Distinct Customer Resident Data;&lt;/P&gt;&lt;P&gt;Join LOAD Distinct Product, 0 as Sales Resident Data;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Concatenate (Data) LOAD * Resident DataPopulated &lt;STRONG&gt;Where not exists('Key', Customer &amp;amp; '#' &amp;amp; Product)&lt;/STRONG&gt;;&lt;/P&gt;&lt;P&gt;DROP Table DataPopulated;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should work on the key to fit your real data, in example adding year and month to the key.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Oct 2015 06:52:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-show-result-from-expression-when-it-is-null/m-p/976020#M333658</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2015-10-15T06:52:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to show result from expression when it is null</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-show-result-from-expression-when-it-is-null/m-p/976021#M333659</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Ruben!&lt;/P&gt;&lt;P&gt;So far, it works perfectly.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Oct 2015 08:20:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-show-result-from-expression-when-it-is-null/m-p/976021#M333659</guid>
      <dc:creator />
      <dc:date>2015-10-15T08:20:40Z</dc:date>
    </item>
  </channel>
</rss>

