<?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: Static Min and Max in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Static-Min-and-Max/m-p/374576#M139479</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe like &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;=min(aggr(RangeMin(&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Sum( {$&amp;lt;[Clover Unit]={'A06129'}, Lens#={'1'},measure={'Ave Lens Diameter (mm)'}&amp;gt;}value) &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;,Sum( {$&amp;lt;[Clover Unit]={'A06129'}, Lens#={'1'},measure={'Ave Lens Diameter (mm)'}&amp;gt;}xbar) &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;,Sum( {$&amp;lt;[Clover Unit]={'A06129'}, Lens#={'1'},measure={'Ave Lens Diameter (mm)'}&amp;gt;}LCL) &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;,Sum( {$&amp;lt;[Clover Unit]={'A06129'}, Lens#={'1'},measure={'Ave Lens Diameter (mm)'}&amp;gt;}UCL) &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;),[Time Data Recorded]))-1&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for min axis scaling and &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;=&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;max(aggr(RangeMax(&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Sum( {$&amp;lt;[Clover Unit]={'A06129'}, Lens#={'1'},measure={'Ave Lens Diameter (mm)'}&amp;gt;}value) &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;,Sum( {$&amp;lt;[Clover Unit]={'A06129'}, Lens#={'1'},measure={'Ave Lens Diameter (mm)'}&amp;gt;}xbar) &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;,Sum( {$&amp;lt;[Clover Unit]={'A06129'}, Lens#={'1'},measure={'Ave Lens Diameter (mm)'}&amp;gt;}LCL) &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;,Sum( {$&amp;lt;[Clover Unit]={'A06129'}, Lens#={'1'},measure={'Ave Lens Diameter (mm)'}&amp;gt;}UCL) &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;),[Time Data Recorded]))+1&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for max axis scaling&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 02 Aug 2012 11:09:49 GMT</pubDate>
    <dc:creator>swuehl</dc:creator>
    <dc:date>2012-08-02T11:09:49Z</dc:date>
    <item>
      <title>Static Min and Max</title>
      <link>https://community.qlik.com/t5/QlikView/Static-Min-and-Max/m-p/374569#M139472</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;in my app, having 2 dimensions and 4 expressions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now i needs to check my 4 expressions values which is minimum and maximum. And should display the y-axis minimum +1 and maximum+1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried below conditions for Static Min and Static Max, but it displays only min and max in y-axis. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Static Min :&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;if(min(Column(1))&amp;gt; Column(2)and Column(3) and Column(4),min(Column(1)),&amp;nbsp; &lt;/P&gt;&lt;P&gt;if(min(Column(2))&amp;gt; Column(1)and Column(3) and Column(4),min(Column(2)),&amp;nbsp; &lt;/P&gt;&lt;P&gt;if(min(Column(3))&amp;gt; Column(1)and Column(2) and Column(4),min(Column(3)),min(Column(4)))))&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Static Max :&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;if(max(Column(1))&amp;gt; Column(2)and Column(3) and Column(4),max(Column(1)),&lt;/P&gt;&lt;P&gt;if(max(Column(2))&amp;gt; Column(1)and Column(3) and Column(4),max(Column(2)),&lt;/P&gt;&lt;P&gt;if(max(Column(3))&amp;gt; Column(1)and Column(2) and Column(4),max(Column(3)),max(Column(4)))))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example for what i'm trying is :&lt;/P&gt;&lt;P&gt;1.) From all the expression min is 14.33 then y-axis should start from 13.33&lt;/P&gt;&lt;P&gt;2.) From all the expression max is 25.17 then y-axis should end at 26.17&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this possible ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;venkat&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jul 2012 13:13:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Static-Min-and-Max/m-p/374569#M139472</guid>
      <dc:creator />
      <dc:date>2012-07-30T13:13:33Z</dc:date>
    </item>
    <item>
      <title>Re: Static Min and Max</title>
      <link>https://community.qlik.com/t5/QlikView/Static-Min-and-Max/m-p/374570#M139473</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try using range functions&lt;/P&gt;&lt;P&gt;RangeMin(Expr1,Expr2,Expr3,Expr4)-1&lt;/P&gt;&lt;P&gt;RangeMax(Expr1,Expr2,Expr3,Expr4)+1&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jul 2012 13:17:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Static-Min-and-Max/m-p/374570#M139473</guid>
      <dc:creator>CELAMBARASAN</dc:creator>
      <dc:date>2012-07-30T13:17:15Z</dc:date>
    </item>
    <item>
      <title>Re: Static Min and Max</title>
      <link>https://community.qlik.com/t5/QlikView/Static-Min-and-Max/m-p/374571#M139474</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;Thanks for reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried Range function, but it didn't helps me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm attaching the 2 screenshots 1.) Without any Static Min and Max 2.) After applying Static Min and Max.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="19094" class="jive-image-thumbnail jive-image" onclick="" alt="WithoutStaticMinandMax.JPG" src="https://community.qlik.com/legacyfs/online/19094_WithoutStaticMinandMax.JPG" width="450" /&gt;&lt;/P&gt;&lt;P&gt;After applying below Stati Min and Max:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;StaticMin:&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;RangeMin(Sum( {$&amp;lt;[Clover Unit]={'A06129'}, Lens#={'1'},measure={'Ave Lens Diameter (mm)'}&amp;gt;}value),&lt;/P&gt;&lt;P&gt;Sum( {$&amp;lt;[Clover Unit]={'A06129'}, Lens#={'1'},measure={'Ave Lens Diameter (mm)'}&amp;gt;}xbar),&lt;/P&gt;&lt;P&gt;Sum( {$&amp;lt;[Clover Unit]={'A06129'}, Lens#={'1'},measure={'Ave Lens Diameter (mm)'}&amp;gt;}LCL),&lt;/P&gt;&lt;P&gt;Sum( {$&amp;lt;[Clover Unit]={'A06129'}, Lens#={'1'},measure={'Ave Lens Diameter (mm)'}&amp;gt;}UCL))-1&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;StaticMax:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;RangeMax(Sum( {$&amp;lt;[Clover Unit]={'A06129'}, Lens#={'1'},measure={'Ave Lens Diameter (mm)'}&amp;gt;}value),&lt;/P&gt;&lt;P&gt;Sum( {$&amp;lt;[Clover Unit]={'A06129'}, Lens#={'1'},measure={'Ave Lens Diameter (mm)'}&amp;gt;}xbar),&lt;/P&gt;&lt;P&gt;Sum( {$&amp;lt;[Clover Unit]={'A06129'}, Lens#={'1'},measure={'Ave Lens Diameter (mm)'}&amp;gt;}LCL),&lt;/P&gt;&lt;P&gt;Sum( {$&amp;lt;[Clover Unit]={'A06129'}, Lens#={'1'},measure={'Ave Lens Diameter (mm)'}&amp;gt;}UCL))+1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="19095" class="jive-image-thumbnail jive-image" onclick="" alt="AfterApplyingStaticMinandMax.JPG" src="https://community.qlik.com/legacyfs/online/19095_AfterApplyingStaticMinandMax.JPG" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Regards,&lt;/P&gt;&lt;P&gt;Venkat&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jul 2012 13:32:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Static-Min-and-Max/m-p/374571#M139474</guid>
      <dc:creator />
      <dc:date>2012-07-30T13:32:16Z</dc:date>
    </item>
    <item>
      <title>Re: Static Min and Max</title>
      <link>https://community.qlik.com/t5/QlikView/Static-Min-and-Max/m-p/374572#M139475</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is it was a percentage?or divided by something?&lt;/P&gt;&lt;P&gt;instead of adding 1 check with adding 0.01?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Jul 2012 09:01:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Static-Min-and-Max/m-p/374572#M139475</guid>
      <dc:creator>CELAMBARASAN</dc:creator>
      <dc:date>2012-07-31T09:01:11Z</dc:date>
    </item>
    <item>
      <title>Re: Static Min and Max</title>
      <link>https://community.qlik.com/t5/QlikView/Static-Min-and-Max/m-p/374573#M139476</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;Could you send a datatable with values?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Jul 2012 19:13:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Static-Min-and-Max/m-p/374573#M139476</guid>
      <dc:creator>ericcosmai</dc:creator>
      <dc:date>2012-07-31T19:13:23Z</dc:date>
    </item>
    <item>
      <title>Re: Static Min and Max</title>
      <link>https://community.qlik.com/t5/QlikView/Static-Min-and-Max/m-p/374574#M139477</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;i tried by adding 0.01 but no difference, it is not increasing the min and max scale.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please find the attached sample app.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Satish.A&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Aug 2012 10:56:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Static-Min-and-Max/m-p/374574#M139477</guid>
      <dc:creator />
      <dc:date>2012-08-01T10:56:04Z</dc:date>
    </item>
    <item>
      <title>Re: Static Min and Max</title>
      <link>https://community.qlik.com/t5/QlikView/Static-Min-and-Max/m-p/374575#M139478</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;Can anyone help on this. Its really urgent to complete.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Regards,&lt;/P&gt;&lt;P&gt;Venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Aug 2012 10:02:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Static-Min-and-Max/m-p/374575#M139478</guid>
      <dc:creator />
      <dc:date>2012-08-02T10:02:33Z</dc:date>
    </item>
    <item>
      <title>Re: Static Min and Max</title>
      <link>https://community.qlik.com/t5/QlikView/Static-Min-and-Max/m-p/374576#M139479</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe like &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;=min(aggr(RangeMin(&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Sum( {$&amp;lt;[Clover Unit]={'A06129'}, Lens#={'1'},measure={'Ave Lens Diameter (mm)'}&amp;gt;}value) &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;,Sum( {$&amp;lt;[Clover Unit]={'A06129'}, Lens#={'1'},measure={'Ave Lens Diameter (mm)'}&amp;gt;}xbar) &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;,Sum( {$&amp;lt;[Clover Unit]={'A06129'}, Lens#={'1'},measure={'Ave Lens Diameter (mm)'}&amp;gt;}LCL) &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;,Sum( {$&amp;lt;[Clover Unit]={'A06129'}, Lens#={'1'},measure={'Ave Lens Diameter (mm)'}&amp;gt;}UCL) &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;),[Time Data Recorded]))-1&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for min axis scaling and &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;=&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;max(aggr(RangeMax(&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Sum( {$&amp;lt;[Clover Unit]={'A06129'}, Lens#={'1'},measure={'Ave Lens Diameter (mm)'}&amp;gt;}value) &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;,Sum( {$&amp;lt;[Clover Unit]={'A06129'}, Lens#={'1'},measure={'Ave Lens Diameter (mm)'}&amp;gt;}xbar) &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;,Sum( {$&amp;lt;[Clover Unit]={'A06129'}, Lens#={'1'},measure={'Ave Lens Diameter (mm)'}&amp;gt;}LCL) &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;,Sum( {$&amp;lt;[Clover Unit]={'A06129'}, Lens#={'1'},measure={'Ave Lens Diameter (mm)'}&amp;gt;}UCL) &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;),[Time Data Recorded]))+1&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for max axis scaling&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Aug 2012 11:09:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Static-Min-and-Max/m-p/374576#M139479</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2012-08-02T11:09:49Z</dc:date>
    </item>
  </channel>
</rss>

