<?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 conditionally show expression values in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/conditionally-show-expression-values/m-p/648086#M1076158</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have expression resulting % values, I want to only show these values only&amp;gt;-500% and &amp;lt;500% , for all other values roll out values. I think,I should make it with condition expression but how should I make it for %?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 24 Jul 2014 15:44:58 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2014-07-24T15:44:58Z</dc:date>
    <item>
      <title>conditionally show expression values</title>
      <link>https://community.qlik.com/t5/QlikView/conditionally-show-expression-values/m-p/648086#M1076158</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have expression resulting % values, I want to only show these values only&amp;gt;-500% and &amp;lt;500% , for all other values roll out values. I think,I should make it with condition expression but how should I make it for %?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jul 2014 15:44:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/conditionally-show-expression-values/m-p/648086#M1076158</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-07-24T15:44:58Z</dc:date>
    </item>
    <item>
      <title>Re: conditionally show expression values</title>
      <link>https://community.qlik.com/t5/QlikView/conditionally-show-expression-values/m-p/648087#M1076159</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you attach your sample file. Depending on the results you either *100 or /100. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Say your result is 45.6 then to convert to percent you *100 = 4560%&lt;/P&gt;&lt;P&gt;Then a simple if() will do.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jul 2014 15:56:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/conditionally-show-expression-values/m-p/648087#M1076159</guid>
      <dc:creator />
      <dc:date>2014-07-24T15:56:30Z</dc:date>
    </item>
    <item>
      <title>Re: conditionally show expression values</title>
      <link>https://community.qlik.com/t5/QlikView/conditionally-show-expression-values/m-p/648088#M1076160</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;Well you can use an IF, something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if($(vMyExpression) &amp;gt;-5 and $(vMyExpression) &amp;lt; 5,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $(vMyExpression)&lt;/P&gt;&lt;P&gt;) // Use it in your expression&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-5 = -500%&lt;/P&gt;&lt;P&gt;5= 500%&lt;/P&gt;&lt;P&gt;vMyExpression = your % formula&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jul 2014 16:01:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/conditionally-show-expression-values/m-p/648088#M1076160</guid>
      <dc:creator />
      <dc:date>2014-07-24T16:01:57Z</dc:date>
    </item>
    <item>
      <title>Re: conditionally show expression values</title>
      <link>https://community.qlik.com/t5/QlikView/conditionally-show-expression-values/m-p/648089#M1076161</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I made % values to show in chart Number tab, so it is automatically value *100.&lt;/P&gt;&lt;P&gt;In expression condition,&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image" src="https://community.qlik.com/legacyfs/online/63081_Capture.PNG" /&gt;&lt;/P&gt;&lt;P&gt;still I cant find desired results.&amp;nbsp; where&amp;nbsp; &lt;A href="mailto:Act.@op"&gt;Act.@op&lt;/A&gt; is previous expression used here. Just to check values I have given 0,as I have now all values&amp;lt; 150%&amp;gt;2%&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jul 2014 16:34:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/conditionally-show-expression-values/m-p/648089#M1076161</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-07-24T16:34:15Z</dc:date>
    </item>
    <item>
      <title>Re: conditionally show expression values</title>
      <link>https://community.qlik.com/t5/QlikView/conditionally-show-expression-values/m-p/648090#M1076162</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Possible to attach a sample file?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jul 2014 16:51:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/conditionally-show-expression-values/m-p/648090#M1076162</guid>
      <dc:creator />
      <dc:date>2014-07-24T16:51:17Z</dc:date>
    </item>
    <item>
      <title>Re: conditionally show expression values</title>
      <link>https://community.qlik.com/t5/QlikView/conditionally-show-expression-values/m-p/648091#M1076163</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I found above will not be executed with the expression label in if statement. But it is either rolling out expression totally or showing all results. I want to display expression, however not following condition should be rolled out values.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jul 2014 17:02:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/conditionally-show-expression-values/m-p/648091#M1076163</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-07-24T17:02:25Z</dc:date>
    </item>
    <item>
      <title>Re: conditionally show expression values</title>
      <link>https://community.qlik.com/t5/QlikView/conditionally-show-expression-values/m-p/648092#M1076164</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;here is the sample file...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jul 2014 17:30:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/conditionally-show-expression-values/m-p/648092#M1076164</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-07-24T17:30:33Z</dc:date>
    </item>
    <item>
      <title>Re: conditionally show expression values</title>
      <link>https://community.qlik.com/t5/QlikView/conditionally-show-expression-values/m-p/648093#M1076165</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;try this for vs.OP%&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;=if(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[vs. OP YTD]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;/&lt;/SPAN&gt;&lt;STRONG style=": ; color: #808080; font-size: 8pt;"&gt;&lt;EM&gt;$(linPNLActualBalance_CY_YTD_BUD)&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;lt;5 and &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[vs. OP YTD]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;/&lt;/SPAN&gt;&lt;STRONG style=": ; color: #808080; font-size: 8pt;"&gt;&lt;EM&gt;$(linPNLActualBalance_CY_YTD_BUD)&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;gt;-5, &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[vs. OP YTD]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;/&lt;/SPAN&gt;&lt;STRONG style=": ; color: #808080; font-size: 8pt;"&gt;&lt;EM&gt;$(linPNLActualBalance_CY_YTD_BUD)&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;, 0) &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;and replicate it for other fields after verifying the conditions and tweaking the expression as necessary.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jul 2014 17:44:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/conditionally-show-expression-values/m-p/648093#M1076165</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-07-24T17:44:47Z</dc:date>
    </item>
  </channel>
</rss>

