<?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: Use &amp;quot;Show/Hide&amp;quot; function in textbox in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Use-quot-Show-Hide-quot-function-in-textbox/m-p/608528#M477151</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Put a count() around your Agg(...&amp;nbsp; in conditional expression, Like: =Count(Aggr(....))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 07 May 2014 13:47:10 GMT</pubDate>
    <dc:creator>tresB</dc:creator>
    <dc:date>2014-05-07T13:47:10Z</dc:date>
    <item>
      <title>Use "Show/Hide" function in textbox</title>
      <link>https://community.qlik.com/t5/QlikView/Use-quot-Show-Hide-quot-function-in-textbox/m-p/608519#M477142</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;Anyone who can tell me how to get the conditional section to work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a pie-chart showing departments results, but if one department is having a negative result it's not shown in the pie-chart. But then I'd like a text box to appear letting know about it, and showing the departments name and results.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've tried with a&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sum(Profit)&amp;lt;0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but it sum all departments, it doesnt seem to take the dimension into consideration.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyone who know how I can check if one or more departments is having a negative result for the selected period?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards&lt;/P&gt;&lt;P&gt;Espen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 May 2014 12:50:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Use-quot-Show-Hide-quot-function-in-textbox/m-p/608519#M477142</guid>
      <dc:creator />
      <dc:date>2014-05-07T12:50:40Z</dc:date>
    </item>
    <item>
      <title>Re: Use "Show/Hide" function in textbox</title>
      <link>https://community.qlik.com/t5/QlikView/Use-quot-Show-Hide-quot-function-in-textbox/m-p/608520#M477143</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try in a text box like:&lt;/P&gt;&lt;P&gt;= 'List of departments with negetive Profit: ' &amp;amp; Concat( Aggr( If(Sum(Profit)&amp;lt;0, Departments) , Departments) , ',' )&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 May 2014 12:54:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Use-quot-Show-Hide-quot-function-in-textbox/m-p/608520#M477143</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2014-05-07T12:54:25Z</dc:date>
    </item>
    <item>
      <title>Re: Use "Show/Hide" function in textbox</title>
      <link>https://community.qlik.com/t5/QlikView/Use-quot-Show-Hide-quot-function-in-textbox/m-p/608521#M477144</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Espen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use Set analysis. You can use this expression&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sum({&amp;lt;Department={'Dept_Name'}&amp;gt;}Profit)&amp;lt;0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for each department name you can check likewise, and whichever is negative, you can show it in a text box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;else in a text box you can aggregate for for all the departments with negative values, and concat them in text box only.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 May 2014 12:55:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Use-quot-Show-Hide-quot-function-in-textbox/m-p/608521#M477144</guid>
      <dc:creator>rajat2392</dc:creator>
      <dc:date>2014-05-07T12:55:25Z</dc:date>
    </item>
    <item>
      <title>Re: Use "Show/Hide" function in textbox</title>
      <link>https://community.qlik.com/t5/QlikView/Use-quot-Show-Hide-quot-function-in-textbox/m-p/608522#M477145</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can&lt;/P&gt;&lt;P&gt;1. use fabs() which will give you the absolute value and even the negative one can be visible and you can represent it in different color.&lt;/P&gt;&lt;P&gt;2. you can enable fast change (to straight table) in the PIE chart so that whenever customer wants to see the ones in negative can use fast change to see the straight table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 May 2014 12:58:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Use-quot-Show-Hide-quot-function-in-textbox/m-p/608522#M477145</guid>
      <dc:creator>sudeepkm</dc:creator>
      <dc:date>2014-05-07T12:58:35Z</dc:date>
    </item>
    <item>
      <title>Re: Use "Show/Hide" function in textbox</title>
      <link>https://community.qlik.com/t5/QlikView/Use-quot-Show-Hide-quot-function-in-textbox/m-p/608523#M477146</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10pt; line-height: 1.5em;"&gt;Concat(If(Aggr(Sum(&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Profit&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10pt; line-height: 1.5em;"&gt;),&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Dept&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10pt; line-height: 1.5em;"&gt;) &amp;lt; 0,&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Dept&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10pt; line-height: 1.5em;"&gt;),',')&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 May 2014 12:58:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Use-quot-Show-Hide-quot-function-in-textbox/m-p/608523#M477146</guid>
      <dc:creator>anbu1984</dc:creator>
      <dc:date>2014-05-07T12:58:42Z</dc:date>
    </item>
    <item>
      <title>Re: Use "Show/Hide" function in textbox</title>
      <link>https://community.qlik.com/t5/QlikView/Use-quot-Show-Hide-quot-function-in-textbox/m-p/608524#M477147</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;I suggest you to use bar chart, more appropriate for pos and neg values&lt;/P&gt;&lt;P&gt;brgs&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 May 2014 13:07:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Use-quot-Show-Hide-quot-function-in-textbox/m-p/608524#M477147</guid>
      <dc:creator />
      <dc:date>2014-05-07T13:07:06Z</dc:date>
    </item>
    <item>
      <title>Re: Use "Show/Hide" function in textbox</title>
      <link>https://community.qlik.com/t5/QlikView/Use-quot-Show-Hide-quot-function-in-textbox/m-p/608525#M477148</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, so many good answers and so fast!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I just wonder, I used a pivot-table instead, but shouldn't it work the same way? I somehow seem to be left with the heading for the first column when the it should be all hidden.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds&lt;/P&gt;&lt;P&gt;Espen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 May 2014 13:07:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Use-quot-Show-Hide-quot-function-in-textbox/m-p/608525#M477148</guid>
      <dc:creator />
      <dc:date>2014-05-07T13:07:42Z</dc:date>
    </item>
    <item>
      <title>Re: Use "Show/Hide" function in textbox</title>
      <link>https://community.qlik.com/t5/QlikView/Use-quot-Show-Hide-quot-function-in-textbox/m-p/608526#M477149</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, it should work similar way for heading/label as they(expressions) don't take dimensions into consideration.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 May 2014 13:16:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Use-quot-Show-Hide-quot-function-in-textbox/m-p/608526#M477149</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2014-05-07T13:16:31Z</dc:date>
    </item>
    <item>
      <title>Re: Use "Show/Hide" function in textbox</title>
      <link>https://community.qlik.com/t5/QlikView/Use-quot-Show-Hide-quot-function-in-textbox/m-p/608527#M477150</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG alt="qw error1.png" class="jive-image" src="/legacyfs/online/58486_qw error1.png" style="width: 620px; height: 238px;" /&gt;@&lt;/P&gt;&lt;P&gt;Can you spot what I-m doing wrong? You see the text down to the right of the circle saying "Avdeling" and "Resultat". It should be hidden now, but it isn't.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds&lt;/P&gt;&lt;P&gt;Espen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 May 2014 13:37:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Use-quot-Show-Hide-quot-function-in-textbox/m-p/608527#M477150</guid>
      <dc:creator />
      <dc:date>2014-05-07T13:37:35Z</dc:date>
    </item>
    <item>
      <title>Re: Use "Show/Hide" function in textbox</title>
      <link>https://community.qlik.com/t5/QlikView/Use-quot-Show-Hide-quot-function-in-textbox/m-p/608528#M477151</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Put a count() around your Agg(...&amp;nbsp; in conditional expression, Like: =Count(Aggr(....))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 May 2014 13:47:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Use-quot-Show-Hide-quot-function-in-textbox/m-p/608528#M477151</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2014-05-07T13:47:10Z</dc:date>
    </item>
    <item>
      <title>Re: Use "Show/Hide" function in textbox</title>
      <link>https://community.qlik.com/t5/QlikView/Use-quot-Show-Hide-quot-function-in-textbox/m-p/608529#M477152</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks!!!!&lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 May 2014 14:19:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Use-quot-Show-Hide-quot-function-in-textbox/m-p/608529#M477152</guid>
      <dc:creator />
      <dc:date>2014-05-07T14:19:54Z</dc:date>
    </item>
  </channel>
</rss>

