<?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: Properly handle missing value in dimension in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Properly-handle-missing-value-in-dimension/m-p/2525993#M107142</link>
    <description>&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;There are two possible reasons for this issue:&lt;/P&gt;&lt;P&gt;1. Depending on the makeup of your chart dimensions, there might be multiple values of Key_Confirm available for a given cell. When multiple values are available, the condition will never be evaluated, and a dash '-' is displayed instead.&lt;/P&gt;&lt;P&gt;2. It's possible that the value is not null, but it's missing, for the combination of the chart Dimension. There is a difference between the NULL value and a missing value. Missing values will not be evaluated as nulls, and they are displayed the same way - with a dash '-'.&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Oleg Troyansky&lt;/P&gt;</description>
    <pubDate>Fri, 01 Aug 2025 13:41:46 GMT</pubDate>
    <dc:creator>Oleg_Troyansky</dc:creator>
    <dc:date>2025-08-01T13:41:46Z</dc:date>
    <item>
      <title>Properly handle missing value in dimension</title>
      <link>https://community.qlik.com/t5/App-Development/Properly-handle-missing-value-in-dimension/m-p/2525990#M107140</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am trying to create a condition a null field for the field "Key Confirm".&lt;/P&gt;
&lt;P&gt;This is my mesure :&lt;/P&gt;
&lt;P&gt;=IF(ISNULL(Key_Confirm), 'Not Confirmed', 'Confirmed')&lt;BR /&gt;But for null key_confirm, it doesn't work, and only display a empty field with '-'.&lt;/P&gt;
&lt;P&gt;What I am missing ?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Aug 2025 13:19:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Properly-handle-missing-value-in-dimension/m-p/2525990#M107140</guid>
      <dc:creator>Tenuki</dc:creator>
      <dc:date>2025-08-01T13:19:54Z</dc:date>
    </item>
    <item>
      <title>Re: Properly handle missing value in dimension</title>
      <link>https://community.qlik.com/t5/App-Development/Properly-handle-missing-value-in-dimension/m-p/2525993#M107142</link>
      <description>&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;There are two possible reasons for this issue:&lt;/P&gt;&lt;P&gt;1. Depending on the makeup of your chart dimensions, there might be multiple values of Key_Confirm available for a given cell. When multiple values are available, the condition will never be evaluated, and a dash '-' is displayed instead.&lt;/P&gt;&lt;P&gt;2. It's possible that the value is not null, but it's missing, for the combination of the chart Dimension. There is a difference between the NULL value and a missing value. Missing values will not be evaluated as nulls, and they are displayed the same way - with a dash '-'.&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Oleg Troyansky&lt;/P&gt;</description>
      <pubDate>Fri, 01 Aug 2025 13:41:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Properly-handle-missing-value-in-dimension/m-p/2525993#M107142</guid>
      <dc:creator>Oleg_Troyansky</dc:creator>
      <dc:date>2025-08-01T13:41:46Z</dc:date>
    </item>
    <item>
      <title>Re: Properly handle missing value in dimension</title>
      <link>https://community.qlik.com/t5/App-Development/Properly-handle-missing-value-in-dimension/m-p/2526327#M107182</link>
      <description>&lt;P&gt;try something like&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;=IF(Key_Confirm = '&lt;FONT color="#0000FF"&gt;-&lt;/FONT&gt;', 'Not Confirmed', 'Confirmed')&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Aug 2025 04:25:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Properly-handle-missing-value-in-dimension/m-p/2526327#M107182</guid>
      <dc:creator>Kaushik2020</dc:creator>
      <dc:date>2025-08-06T04:25:43Z</dc:date>
    </item>
    <item>
      <title>Re: Properly handle missing value in dimension</title>
      <link>https://community.qlik.com/t5/App-Development/Properly-handle-missing-value-in-dimension/m-p/2526351#M107190</link>
      <description>&lt;P&gt;I have try, but it didn't work with my model.&lt;BR /&gt;&lt;BR /&gt;I have found a work around with mapping&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Mymap:&lt;/P&gt;
&lt;P&gt;Mapping LOAD&amp;nbsp;&lt;BR /&gt;OrderLineID, 'Confirmed'&lt;BR /&gt;FROM Confirmation&lt;BR /&gt;&lt;BR /&gt;Mytable:&lt;BR /&gt;OrderLineID, ApplyMap('Mymap', Confirmation_ID, 'Not Confirmed') as Confirmation_Status&lt;BR /&gt;FROM OrderLineTable&lt;/P&gt;</description>
      <pubDate>Wed, 06 Aug 2025 06:53:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Properly-handle-missing-value-in-dimension/m-p/2526351#M107190</guid>
      <dc:creator>Tenuki</dc:creator>
      <dc:date>2025-08-06T06:53:59Z</dc:date>
    </item>
    <item>
      <title>Re: Properly handle missing value in dimension</title>
      <link>https://community.qlik.com/t5/App-Development/Properly-handle-missing-value-in-dimension/m-p/2526743#M107288</link>
      <description>&lt;P&gt;IsNull() function is...tricky. I prefer to use a combination of &lt;STRONG&gt;Len()&lt;/STRONG&gt; and &lt;STRONG&gt;Trim()&lt;/STRONG&gt; functions instead, like this:&lt;/P&gt;&lt;PRE&gt;If(Len(Trim(Key_Confirm)) = 0, 'Not Confirmed', 'Confirmed')&lt;/PRE&gt;&lt;P&gt;&lt;SPAN&gt;This considers both the null and empty cells.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Although, in your case, like &lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/6152"&gt;@Oleg_Troyansky&lt;/a&gt;&amp;nbsp;mentioned, your expression may be evaluating &lt;STRONG&gt;multiple values&lt;/STRONG&gt; in a chart which will result in you seeing a '-' instead of either 'Not Confirmed' or 'Confirmed' text.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;To handle scenario with an expression generating multiple values for evaluation, I recommend using the &lt;A title="Concat - script function" href="https://help.qlik.com/en-US/sense/May2025/Subsystems/Hub/Content/Sense_Hub/Scripting/StringAggregationFunctions/concat.htm" target="_blank" rel="noopener"&gt;Concat()&lt;/A&gt; function, like this:&lt;/P&gt;&lt;PRE&gt;If(Len(Trim(&lt;FONT color="#3366FF"&gt;&lt;SPAN&gt;Concat&lt;/SPAN&gt;&lt;/FONT&gt;(Key_Confirm))) = 0, 'Not Confirmed', 'Confirmed')&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Aug 2025 15:43:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Properly-handle-missing-value-in-dimension/m-p/2526743#M107288</guid>
      <dc:creator>howdash</dc:creator>
      <dc:date>2025-08-08T15:43:11Z</dc:date>
    </item>
  </channel>
</rss>

