<?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 Average in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Average/m-p/315269#M500630</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; that worked a treat! cheers &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/wink.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 20 May 2011 09:56:25 GMT</pubDate>
    <dc:creator />
    <dc:date>2011-05-20T09:56:25Z</dc:date>
    <item>
      <title>Average</title>
      <link>https://community.qlik.com/t5/QlikView/Average/m-p/315265#M500626</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Folks i have a table setup like below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.JPG" class="jive-image-thumbnail jive-image" onclick="" src="https://community.qlik.com/legacyfs/online/4648_Capture.JPG" width="450" /&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but my average column doesnt appear to be working. if i create a stats box and select the area LL it gives me the correct average but if i have all my areas selected it doesnt give me my average is there a way of showing the clicked average on the table with out selecting the actual area i hope this makes sense?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks all&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jase&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 May 2011 08:29:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Average/m-p/315265#M500626</guid>
      <dc:creator />
      <dc:date>2011-05-20T08:29:09Z</dc:date>
    </item>
    <item>
      <title>Average</title>
      <link>https://community.qlik.com/t5/QlikView/Average/m-p/315266#M500627</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It would be clearer, if you could post an example to see the fields/datastructure in your application:&lt;/P&gt;&lt;P&gt;You may replace the formula behind "Average Reve...." by =COLUMN(3)/COLUMN(1)&lt;/P&gt;&lt;P&gt;which should divide the Revenue by the number of orders.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;BR /&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 May 2011 08:46:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Average/m-p/315266#M500627</guid>
      <dc:creator>prieper</dc:creator>
      <dc:date>2011-05-20T08:46:58Z</dc:date>
    </item>
    <item>
      <title>Average</title>
      <link>https://community.qlik.com/t5/QlikView/Average/m-p/315267#M500628</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hi Peter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i was just been thick i think &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/wink.png" /&gt; i was able to do it just by adding a column and selecting Avg (Revenue)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i do have a more complex problem though&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want to work out this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have the number of orders but i want to put something in place that will show me all Orders upto a Certain Weight&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so Orders upto weight 100 - 250&lt;/P&gt;&lt;P&gt;251- 500&lt;/P&gt;&lt;P&gt;501 - 1000&lt;/P&gt;&lt;P&gt;1001+&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;not sure how i can put this into a table though if anyone has any ideas?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 May 2011 08:56:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Average/m-p/315267#M500628</guid>
      <dc:creator />
      <dc:date>2011-05-20T08:56:55Z</dc:date>
    </item>
    <item>
      <title>Average</title>
      <link>https://community.qlik.com/t5/QlikView/Average/m-p/315268#M500629</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You may build a formula with nested IFs, like&lt;/P&gt;&lt;P&gt;IF(Weight &amp;lt; 100, 'Low', IF(Weight &amp;lt; 250, 'Light', IF(Weight &amp;lt;500, 'Medium', IF(Weight &amp;lt; 1000, 'Heavy', 'Super Heavy'))))&lt;/P&gt;&lt;P&gt;I would prefer to have it in the script, same formula:&lt;/P&gt;&lt;P&gt;IF(Weight &amp;lt; 100, 'Low', IF(Weight &amp;lt; 250, 'Light', IF(Weight &amp;lt;500, 'Medium', IF(Weight &amp;lt; 1000, 'Heavy', 'Super Heavy')))) AS WeightCategory&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;BR /&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 May 2011 09:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Average/m-p/315268#M500629</guid>
      <dc:creator>prieper</dc:creator>
      <dc:date>2011-05-20T09:16:04Z</dc:date>
    </item>
    <item>
      <title>Average</title>
      <link>https://community.qlik.com/t5/QlikView/Average/m-p/315269#M500630</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; that worked a treat! cheers &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/wink.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 May 2011 09:56:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Average/m-p/315269#M500630</guid>
      <dc:creator />
      <dc:date>2011-05-20T09:56:25Z</dc:date>
    </item>
  </channel>
</rss>

