<?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: Message when all values are zero in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Message-when-all-values-are-zero/m-p/722696#M540633</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I can't see any attached file...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 22 Jul 2014 11:16:13 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2014-07-22T11:16:13Z</dc:date>
    <item>
      <title>Message when all values are zero</title>
      <link>https://community.qlik.com/t5/QlikView/Message-when-all-values-are-zero/m-p/722690#M540627</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am creating a pivot table. I am suppressing zero-values as I don't want a long list with 0 (most of my values are zero). Therefore I get a short list with the relevant non-zero values. This is fine, but in some cases all the values is zero, and I do not get any values at all. In this case only the headline is shown. For this case it would be useful if I could show a special message to the users. Does anyone know how I can do this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;IMG alt="Untitled.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/62835_Untitled.png" style="width: 620px; height: 341px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jul 2014 08:56:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Message-when-all-values-are-zero/m-p/722690#M540627</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-07-22T08:56:55Z</dc:date>
    </item>
    <item>
      <title>Re: Message when all values are zero</title>
      <link>https://community.qlik.com/t5/QlikView/Message-when-all-values-are-zero/m-p/722691#M540628</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Create a calculation condition in the General tab. If your used expression is 0 in total, then don't calculate the chart and display a customized error message instead. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jul 2014 09:17:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Message-when-all-values-are-zero/m-p/722691#M540628</guid>
      <dc:creator>simondachstr</dc:creator>
      <dc:date>2014-07-22T09:17:59Z</dc:date>
    </item>
    <item>
      <title>Re: Message when all values are zero</title>
      <link>https://community.qlik.com/t5/QlikView/Message-when-all-values-are-zero/m-p/722692#M540629</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use customize error message&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jul 2014 09:19:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Message-when-all-values-are-zero/m-p/722692#M540629</guid>
      <dc:creator>senpradip007</dc:creator>
      <dc:date>2014-07-22T09:19:06Z</dc:date>
    </item>
    <item>
      <title>Re: Message when all values are zero</title>
      <link>https://community.qlik.com/t5/QlikView/Message-when-all-values-are-zero/m-p/722693#M540630</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Calculation condition or conditional show with text box are the easiest solution, but if you really want it the way it is in screenshot:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create calculated dimension: =IF(aggr(Sum(Approvals),YearMonth)=0, 'Nothing is approved', YearMonth)&lt;/P&gt;&lt;P&gt;Red color to text color: =IF(Sum(Approvals)=0, rgb(255,0,0))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then we need two expressions with conditionals:&lt;/P&gt;&lt;P&gt;1st:&lt;/P&gt;&lt;P&gt;Condition: Sum(Approvals)&amp;lt;&amp;gt;0&lt;/P&gt;&lt;P&gt;Expression: Sum(Approvals)&lt;/P&gt;&lt;P&gt;2nd:&lt;/P&gt;&lt;P&gt;Condition: Sum(Approvals)=0&lt;/P&gt;&lt;P&gt;Expression: ' '&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Calculated dimensions can sometimes bring performance issues.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jul 2014 09:35:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Message-when-all-values-are-zero/m-p/722693#M540630</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-07-22T09:35:02Z</dc:date>
    </item>
    <item>
      <title>Re: Message when all values are zero</title>
      <link>https://community.qlik.com/t5/QlikView/Message-when-all-values-are-zero/m-p/722694#M540631</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in chart properties,general tab, under calculated condition write something like =If(sum(approvals)&amp;gt;0, 1, 0)&lt;/P&gt;&lt;P&gt;and then click on error message button in general tab, click&amp;nbsp; calculation conditions unfulfilled, and write your custom message below. &lt;/P&gt;&lt;P&gt;see the attached example&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jul 2014 09:40:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Message-when-all-values-are-zero/m-p/722694#M540631</guid>
      <dc:creator>Siva_Sankar</dc:creator>
      <dc:date>2014-07-22T09:40:35Z</dc:date>
    </item>
    <item>
      <title>Re: Message when all values are zero</title>
      <link>https://community.qlik.com/t5/QlikView/Message-when-all-values-are-zero/m-p/722695#M540632</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 find attached file for solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jul 2014 09:43:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Message-when-all-values-are-zero/m-p/722695#M540632</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2014-07-22T09:43:35Z</dc:date>
    </item>
    <item>
      <title>Re: Message when all values are zero</title>
      <link>https://community.qlik.com/t5/QlikView/Message-when-all-values-are-zero/m-p/722696#M540633</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I can't see any attached file...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jul 2014 11:16:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Message-when-all-values-are-zero/m-p/722696#M540633</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-07-22T11:16:13Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Message when all values are zero</title>
      <link>https://community.qlik.com/t5/QlikView/Message-when-all-values-are-zero/m-p/722697#M540634</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;Attached again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jul 2014 13:50:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Message-when-all-values-are-zero/m-p/722697#M540634</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2014-07-22T13:50:38Z</dc:date>
    </item>
  </channel>
</rss>

