<?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 Rangemax in script in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Rangemax-in-script/m-p/336014#M123933</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; What the following example gives result in script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rangemax(1,2,3,4) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can u test this&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 04 Jun 2012 12:57:40 GMT</pubDate>
    <dc:creator>sivarajs</dc:creator>
    <dc:date>2012-06-04T12:57:40Z</dc:date>
    <item>
      <title>Rangemax in script</title>
      <link>https://community.qlik.com/t5/QlikView/Rangemax-in-script/m-p/336010#M123929</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 am trying&amp;nbsp; to use rangemax,Chart level its working but in script its not working&lt;/P&gt;&lt;P&gt;Any idea...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sivaraj S&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jun 2012 11:35:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Rangemax-in-script/m-p/336010#M123929</guid>
      <dc:creator>sivarajs</dc:creator>
      <dc:date>2012-06-04T11:35:14Z</dc:date>
    </item>
    <item>
      <title>Rangemax in script</title>
      <link>https://community.qlik.com/t5/QlikView/Rangemax-in-script/m-p/336011#M123930</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sivaraj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this sample script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Years:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RangeMax(Year, Sales) AS MaxValue,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; *;&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year, Sales&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2005, 10000&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2006, 200&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2007,30000&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2008,400&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2009,500&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2010,600&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2011,70000&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2012,800&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&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>Mon, 04 Jun 2012 12:22:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Rangemax-in-script/m-p/336011#M123930</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2012-06-04T12:22:47Z</dc:date>
    </item>
    <item>
      <title>Rangemax in script</title>
      <link>https://community.qlik.com/t5/QlikView/Rangemax-in-script/m-p/336012#M123931</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Its giving all value in the field&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jun 2012 12:34:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Rangemax-in-script/m-p/336012#M123931</guid>
      <dc:creator>sivarajs</dc:creator>
      <dc:date>2012-06-04T12:34:01Z</dc:date>
    </item>
    <item>
      <title>Rangemax in script</title>
      <link>https://community.qlik.com/t5/QlikView/Rangemax-in-script/m-p/336013#M123932</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;RangeMax() receives multiple values as parameters and returns max value among those parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RangeMax(Year, Sales) AS MaxValue&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For record 1 in above script, the 2 parameters are 2005, 10000.&amp;nbsp; Among this two 10000 is the maximum value, so it returns 10000.&amp;nbsp; Like wise this function works for all the records.&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>Mon, 04 Jun 2012 12:46:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Rangemax-in-script/m-p/336013#M123932</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2012-06-04T12:46:07Z</dc:date>
    </item>
    <item>
      <title>Rangemax in script</title>
      <link>https://community.qlik.com/t5/QlikView/Rangemax-in-script/m-p/336014#M123933</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; What the following example gives result in script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rangemax(1,2,3,4) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can u test this&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jun 2012 12:57:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Rangemax-in-script/m-p/336014#M123933</guid>
      <dc:creator>sivarajs</dc:creator>
      <dc:date>2012-06-04T12:57:40Z</dc:date>
    </item>
    <item>
      <title>Rangemax in script</title>
      <link>https://community.qlik.com/t5/QlikView/Rangemax-in-script/m-p/336015#M123934</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sivaraj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The result is 4, because 4 is the max value among all values.&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>Mon, 04 Jun 2012 13:01:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Rangemax-in-script/m-p/336015#M123934</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2012-06-04T13:01:17Z</dc:date>
    </item>
    <item>
      <title>Rangemax in script</title>
      <link>https://community.qlik.com/t5/QlikView/Rangemax-in-script/m-p/336016#M123935</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; It will give you 4?For you its not working like that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Celambarasan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jun 2012 13:01:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Rangemax-in-script/m-p/336016#M123935</guid>
      <dc:creator>CELAMBARASAN</dc:creator>
      <dc:date>2012-06-04T13:01:20Z</dc:date>
    </item>
    <item>
      <title>Rangemax in script</title>
      <link>https://community.qlik.com/t5/QlikView/Rangemax-in-script/m-p/336017#M123936</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;Try this script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Test:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;rangemax(1,2,3,4)&amp;nbsp; AS Test&lt;/P&gt;&lt;P&gt;AutoGenerate 1;&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>Mon, 04 Jun 2012 13:02:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Rangemax-in-script/m-p/336017#M123936</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2012-06-04T13:02:33Z</dc:date>
    </item>
    <item>
      <title>Rangemax in script</title>
      <link>https://community.qlik.com/t5/QlikView/Rangemax-in-script/m-p/336018#M123937</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; in sript it gives result like &lt;/P&gt;&lt;P&gt;1&lt;/P&gt;&lt;P&gt;2&lt;/P&gt;&lt;P&gt;3&lt;/P&gt;&lt;P&gt;4&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jun 2012 13:09:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Rangemax-in-script/m-p/336018#M123937</guid>
      <dc:creator>sivarajs</dc:creator>
      <dc:date>2012-06-04T13:09:18Z</dc:date>
    </item>
    <item>
      <title>Rangemax in script</title>
      <link>https://community.qlik.com/t5/QlikView/Rangemax-in-script/m-p/336019#M123938</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 you post the script which you used.&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>Mon, 04 Jun 2012 13:11:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Rangemax-in-script/m-p/336019#M123938</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2012-06-04T13:11:59Z</dc:date>
    </item>
    <item>
      <title>Rangemax in script</title>
      <link>https://community.qlik.com/t5/QlikView/Rangemax-in-script/m-p/336020#M123939</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; LOAD &lt;/P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; *, &lt;P&gt;&lt;/P&gt;&lt;P&gt;RANGEMAX(a,b,c,d,e) as TEXT ; // each field has single value&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;resident tmp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TEXT getting all the values&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jun 2012 13:37:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Rangemax-in-script/m-p/336020#M123939</guid>
      <dc:creator>sivarajs</dc:creator>
      <dc:date>2012-06-04T13:37:22Z</dc:date>
    </item>
    <item>
      <title>Rangemax in script</title>
      <link>https://community.qlik.com/t5/QlikView/Rangemax-in-script/m-p/336021#M123940</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;If a, b, c, d and e are fields, then RANGEMAX(a,b,c,d,e) will return the maximum value among those values for each record.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RANGEMAX(a,b,c,d,e) as TEXT &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I didn't understand about this "TEXT getting all the values", if you do not want a, b, c, d, e fields then just use following script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; LOAD &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RANGEMAX(a,b,c,d,e) as TEXT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;resident tmp;&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>Mon, 04 Jun 2012 14:06:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Rangemax-in-script/m-p/336021#M123940</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2012-06-04T14:06:57Z</dc:date>
    </item>
    <item>
      <title>Rangemax in script</title>
      <link>https://community.qlik.com/t5/QlikView/Rangemax-in-script/m-p/336022#M123941</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So a,b,c,d and e are fields in your tmp table, right?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What are the values of all these fields? You mentioned that you got &lt;/P&gt;&lt;P&gt;1&lt;/P&gt;&lt;P&gt;2&lt;/P&gt;&lt;P&gt;3&lt;/P&gt;&lt;P&gt;4&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;returned for the RANGEMAX(a,b,c,d,e) function. So these are the first four values of your TEXT field?&lt;/P&gt;&lt;P&gt;Could you post the first four complete lines for your table, including TEXT and a,b,c,d,e?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are all your values numericals or are you coping with text values? You might want to consider using &lt;EM&gt;rangemaxstring(a,b,c,d,e) as TEXT&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;then.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It would be best if you could post a small sample app that demonstrates what you are trying to achieve and your issue. If this is not possible, please provide a sufficient snippet of your script and some sample data (input to your code snippet / output table).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jun 2012 14:11:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Rangemax-in-script/m-p/336022#M123941</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2012-06-04T14:11:12Z</dc:date>
    </item>
    <item>
      <title>Re: Rangemax in script</title>
      <link>https://community.qlik.com/t5/QlikView/Rangemax-in-script/m-p/336023#M123942</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi sweuhl,&lt;/P&gt;&lt;P&gt;I guess rangemax is not working because of data stored in qvd is below format&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" width="384"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="xl63" height="20" width="64"&gt;A&lt;/TD&gt;&lt;TD class="xl63" style="border-left: medium none;" width="64"&gt;B&lt;/TD&gt;&lt;TD class="xl63" style="border-left: medium none;" width="64"&gt;C&lt;/TD&gt;&lt;TD class="xl63" style="border-left: medium none;" width="64"&gt;D&lt;/TD&gt;&lt;TD class="xl63" style="border-left: medium none;" width="64"&gt;E&lt;/TD&gt;&lt;TD class="xl63" style="border-left: medium none;" width="64"&gt;F&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl64" height="20" style="border-top: medium none;" width="64"&gt;0.0664067&lt;/TD&gt;&lt;TD class="xl64" style="border-left: medium none; border-top: medium none;" width="64"&gt;0.2287981&lt;/TD&gt;&lt;TD class="xl64" style="border-left: medium none; border-top: medium none;" width="64"&gt;0.3416996&lt;/TD&gt;&lt;TD class="xl64" style="border-left: medium none; border-top: medium none;" width="64"&gt;0.3334835&lt;/TD&gt;&lt;TD class="xl64" style="border-left: medium none; border-top: medium none;" width="64"&gt;0.0607539&lt;/TD&gt;&lt;TD class="xl64" style="border-left: medium none; border-top: medium none;" width="64"&gt;0.3978605&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl64" height="20" style="border-top: medium none;" width="64"&gt;0&lt;/TD&gt;&lt;TD class="xl65" style="border-left: medium none; border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;TD class="xl65" style="border-left: medium none; border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;TD class="xl65" style="border-left: medium none; border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;TD class="xl65" style="border-left: medium none; border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;TD class="xl65" style="border-left: medium none; border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl64" height="20" style="border-top: medium none;" width="64"&gt;0.0839515&lt;/TD&gt;&lt;TD class="xl65" style="border-left: medium none; border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;TD class="xl65" style="border-left: medium none; border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;TD class="xl65" style="border-left: medium none; border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;TD class="xl65" style="border-left: medium none; border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;TD class="xl65" style="border-left: medium none; border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="20" style="border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;TD class="xl64" style="border-left: medium none; border-top: medium none;" width="64"&gt;0&lt;/TD&gt;&lt;TD class="xl65" style="border-left: medium none; border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;TD class="xl65" style="border-left: medium none; border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;TD class="xl65" style="border-left: medium none; border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;TD class="xl65" style="border-left: medium none; border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="20" style="border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;TD class="xl64" style="border-left: medium none; border-top: medium none;" width="64"&gt;0.2428004&lt;/TD&gt;&lt;TD class="xl65" style="border-left: medium none; border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;TD class="xl65" style="border-left: medium none; border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;TD class="xl65" style="border-left: medium none; border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;TD class="xl65" style="border-left: medium none; border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="20" style="border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;TD class="xl65" style="border-left: medium none; border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;TD class="xl64" style="border-left: medium none; border-top: medium none;" width="64"&gt;0&lt;/TD&gt;&lt;TD class="xl65" style="border-left: medium none; border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;TD class="xl65" style="border-left: medium none; border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;TD class="xl65" style="border-left: medium none; border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="20" style="border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;TD class="xl65" style="border-left: medium none; border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;TD class="xl64" style="border-left: medium none; border-top: medium none;" width="64"&gt;0.2099772&lt;/TD&gt;&lt;TD class="xl65" style="border-left: medium none; border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;TD class="xl65" style="border-left: medium none; border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;TD class="xl65" style="border-left: medium none; border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="20" style="border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;TD class="xl65" style="border-left: medium none; border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;TD class="xl65" style="border-left: medium none; border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;TD class="xl64" style="border-left: medium none; border-top: medium none;" width="64"&gt;0&lt;/TD&gt;&lt;TD class="xl65" style="border-left: medium none; border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;TD class="xl65" style="border-left: medium none; border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="20" style="border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;TD class="xl65" style="border-left: medium none; border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;TD class="xl65" style="border-left: medium none; border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;TD class="xl64" style="border-left: medium none; border-top: medium none;" width="64"&gt;0.1059254&lt;/TD&gt;&lt;TD class="xl65" style="border-left: medium none; border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;TD class="xl65" style="border-left: medium none; border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="20" style="border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;TD class="xl65" style="border-left: medium none; border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;TD class="xl65" style="border-left: medium none; border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;TD class="xl65" style="border-left: medium none; border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;TD class="xl64" style="border-left: medium none; border-top: medium none;" width="64"&gt;0&lt;/TD&gt;&lt;TD class="xl65" style="border-left: medium none; border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="20" style="border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;TD class="xl65" style="border-left: medium none; border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;TD class="xl65" style="border-left: medium none; border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;TD class="xl65" style="border-left: medium none; border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;TD class="xl64" style="border-left: medium none; border-top: medium none;" width="64"&gt;0.0761975&lt;/TD&gt;&lt;TD class="xl65" style="border-left: medium none; border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="20" style="border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;TD class="xl65" style="border-left: medium none; border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;TD class="xl65" style="border-left: medium none; border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;TD class="xl65" style="border-left: medium none; border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;TD class="xl65" style="border-left: medium none; border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;TD class="xl64" style="border-left: medium none; border-top: medium none;" width="64"&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="20" style="border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;TD class="xl65" style="border-left: medium none; border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;TD class="xl65" style="border-left: medium none; border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;TD class="xl65" style="border-left: medium none; border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;TD class="xl65" style="border-left: medium none; border-top: medium none;" width="64"&gt;&lt;/TD&gt;&lt;TD class="xl64" style="border-left: medium none; border-top: medium none;" width="64"&gt;0.1439361&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;BR /&gt;i am using for loop to get values based on customer &lt;/P&gt;&lt;P&gt;for 1st loop i giving correct value if it goes to 2nd further its storing like the table above&lt;/P&gt;&lt;P&gt;Can you suggest me on this &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2012 10:35:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Rangemax-in-script/m-p/336023#M123942</guid>
      <dc:creator>sivarajs</dc:creator>
      <dc:date>2012-06-05T10:35:24Z</dc:date>
    </item>
    <item>
      <title>Rangemax in script</title>
      <link>https://community.qlik.com/t5/QlikView/Rangemax-in-script/m-p/336024#M123943</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You are using for loop to get values based on customer?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are the above table fields the only fields in your table? I guess you need to have at least one more field, your dimension (maybe customer)?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If so, you could try using a group by load &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Result:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD Dimension, &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Rangemax(sum(A),sum(B),sum(C),sum(D),sum(E),sum(F)) as RangeMax &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;resident YourTable group by Dimension;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2012 12:22:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Rangemax-in-script/m-p/336024#M123943</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2012-06-05T12:22:08Z</dc:date>
    </item>
  </channel>
</rss>

