<?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 Set analysis in Pivot with no result Null Value in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Set-analysis-in-Pivot-with-no-result-Null-Value/m-p/1805478#M65486</link>
    <description>&lt;P&gt;Namaste&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":folded_hands:"&gt;🙏&lt;/span&gt;,&lt;/P&gt;&lt;P&gt;I am trying to color the pivot back ground based on the result. All working good, but some values resulting Null values and as all know we can't have color to null and need to have 0 or other values to achieve it.&lt;/P&gt;&lt;P&gt;My expression in Measure : to give the count of Open status by different dimension in Pivot&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Count({&amp;lt;&lt;STRONG&gt;DATE&lt;/STRONG&gt;={"&amp;lt;=$(=(&lt;STRONG&gt;DATESELECT&lt;/STRONG&gt;))"},&lt;STRONG&gt;STATUS&lt;/STRONG&gt;={'OPEN'}&amp;gt;}&lt;STRONG&gt;COUNTKEY&lt;/STRONG&gt;)&amp;nbsp;&lt;/P&gt;&lt;P&gt;(*DATESELECT is Variable Key)&lt;/P&gt;&lt;P&gt;My Color expression in Background Color :&lt;/P&gt;&lt;P&gt;If(&lt;STRONG&gt;GROUP&lt;/STRONG&gt;='GROUP1','#ffe53c',&lt;BR /&gt;If(&lt;STRONG&gt;GROUP&lt;/STRONG&gt;='GROUP2','#FFA726',&lt;BR /&gt;If(&lt;STRONG&gt;GROUP&lt;/STRONG&gt;='GROUP3','#EF8383',&lt;BR /&gt;If(&lt;STRONG&gt;GROUP&lt;/STRONG&gt;='GROUP4','#BE2D2D',&lt;BR /&gt;If(&lt;STRONG&gt;GROUP&lt;/STRONG&gt;='GROUP5','#7E0E0E',White())))))&lt;/P&gt;&lt;P&gt;My expression in Measure resulting in null values for some dimensions for which my expression in Color not able to color it.&lt;/P&gt;&lt;P&gt;So, how do i change my expression in measure to result the null to Zero.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;Thanks,&lt;/P&gt;</description>
    <pubDate>Wed, 05 May 2021 14:01:27 GMT</pubDate>
    <dc:creator>RC_121985</dc:creator>
    <dc:date>2021-05-05T14:01:27Z</dc:date>
    <item>
      <title>Set analysis in Pivot with no result Null Value</title>
      <link>https://community.qlik.com/t5/App-Development/Set-analysis-in-Pivot-with-no-result-Null-Value/m-p/1805478#M65486</link>
      <description>&lt;P&gt;Namaste&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":folded_hands:"&gt;🙏&lt;/span&gt;,&lt;/P&gt;&lt;P&gt;I am trying to color the pivot back ground based on the result. All working good, but some values resulting Null values and as all know we can't have color to null and need to have 0 or other values to achieve it.&lt;/P&gt;&lt;P&gt;My expression in Measure : to give the count of Open status by different dimension in Pivot&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Count({&amp;lt;&lt;STRONG&gt;DATE&lt;/STRONG&gt;={"&amp;lt;=$(=(&lt;STRONG&gt;DATESELECT&lt;/STRONG&gt;))"},&lt;STRONG&gt;STATUS&lt;/STRONG&gt;={'OPEN'}&amp;gt;}&lt;STRONG&gt;COUNTKEY&lt;/STRONG&gt;)&amp;nbsp;&lt;/P&gt;&lt;P&gt;(*DATESELECT is Variable Key)&lt;/P&gt;&lt;P&gt;My Color expression in Background Color :&lt;/P&gt;&lt;P&gt;If(&lt;STRONG&gt;GROUP&lt;/STRONG&gt;='GROUP1','#ffe53c',&lt;BR /&gt;If(&lt;STRONG&gt;GROUP&lt;/STRONG&gt;='GROUP2','#FFA726',&lt;BR /&gt;If(&lt;STRONG&gt;GROUP&lt;/STRONG&gt;='GROUP3','#EF8383',&lt;BR /&gt;If(&lt;STRONG&gt;GROUP&lt;/STRONG&gt;='GROUP4','#BE2D2D',&lt;BR /&gt;If(&lt;STRONG&gt;GROUP&lt;/STRONG&gt;='GROUP5','#7E0E0E',White())))))&lt;/P&gt;&lt;P&gt;My expression in Measure resulting in null values for some dimensions for which my expression in Color not able to color it.&lt;/P&gt;&lt;P&gt;So, how do i change my expression in measure to result the null to Zero.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;Thanks,&lt;/P&gt;</description>
      <pubDate>Wed, 05 May 2021 14:01:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Set-analysis-in-Pivot-with-no-result-Null-Value/m-p/1805478#M65486</guid>
      <dc:creator>RC_121985</dc:creator>
      <dc:date>2021-05-05T14:01:27Z</dc:date>
    </item>
    <item>
      <title>Re: Set analysis in Pivot with no result Null Value</title>
      <link>https://community.qlik.com/t5/App-Development/Set-analysis-in-Pivot-with-no-result-Null-Value/m-p/1806778#M65631</link>
      <description>&lt;P&gt;Not sure if I understand the problem fully but you may try&amp;nbsp;&lt;SPAN&gt;coalesce function if available in your release -&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;something like&amp;nbsp; - Coalesce(Count({&amp;lt;&lt;STRONG&gt;DATE&lt;/STRONG&gt;={"&amp;lt;=$(=(&lt;STRONG&gt;DATESELECT&lt;/STRONG&gt;))"},&lt;STRONG&gt;STATUS&lt;/STRONG&gt;={'OPEN'}&amp;gt;}&lt;STRONG&gt;COUNTKEY&lt;/STRONG&gt;),0)&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Or ALT(Count({&amp;lt;&lt;STRONG&gt;DATE&lt;/STRONG&gt;={"&amp;lt;=$(=(&lt;STRONG&gt;DATESELECT&lt;/STRONG&gt;))"},&lt;STRONG&gt;STATUS&lt;/STRONG&gt;={'OPEN'}&amp;gt;}&lt;STRONG&gt;COUNTKEY&lt;/STRONG&gt;),0)&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 11 May 2021 02:34:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Set-analysis-in-Pivot-with-no-result-Null-Value/m-p/1806778#M65631</guid>
      <dc:creator>Digvijay_Singh</dc:creator>
      <dc:date>2021-05-11T02:34:33Z</dc:date>
    </item>
  </channel>
</rss>

