<?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: Filtering journal entries for above average values in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Filtering-journal-entries-for-above-average-values/m-p/906397#M471026</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the idea, I am going to give that a try. I guess it will take two separate loads then, if I want to load the entire data and add a category field (one load for values above average and one for the rest).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Ralf&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Apr 2015 08:03:26 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-04-15T08:03:26Z</dc:date>
    <item>
      <title>Filtering journal entries for above average values</title>
      <link>https://community.qlik.com/t5/QlikView/Filtering-journal-entries-for-above-average-values/m-p/906394#M471023</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 am new to qlikview and would like to try a small analysis on data from a ledger (basically fields like (monetary) value, entry date, booking date, account, user etc.)&amp;nbsp; for evaluation purposes. What i did so far is loading the data and visualizing journal entries by entry, by week day, hour and user.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I would like to filter all views to show only entries with above average values. My first idea was to do this in the ETL script by inline loading a dimensional table "outliers" with values A and B and adding a field If(VALUE&amp;gt; 25000, 'A', 'B') as OUTLIERS. This works and I can now filter by using a multi box. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible to replace the fix value '25000' in the ETL script by an expression that actually calculates the correct average over all values (or better, average + standard deviation)? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alternatively, would it be possible to do the filtering dynamically in the chart? We are talking about 1-2 mio. entries, so this might get a bit slow. Still, I would like to give it a try to see how qlikview handles this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your input!&lt;/P&gt;&lt;P&gt;Ralf&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2015 09:12:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filtering-journal-entries-for-above-average-values/m-p/906394#M471023</guid>
      <dc:creator />
      <dc:date>2015-04-14T09:12:28Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering journal entries for above average values</title>
      <link>https://community.qlik.com/t5/QlikView/Filtering-journal-entries-for-above-average-values/m-p/906395#M471024</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;maybe I found one solution myself for filtering the journal in a chart. I added the following calculated dimension:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(VALUE &amp;gt; AVG(all total VALUE), 'A', 'B')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where A entries are outliers and B entries are average. Now, I can filter the outliers by clicking on any A entry in the chart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anyone have an idea for a solution in the load script?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Ralf&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2015 13:56:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filtering-journal-entries-for-above-average-values/m-p/906395#M471024</guid>
      <dc:creator />
      <dc:date>2015-04-14T13:56:38Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering journal entries for above average values</title>
      <link>https://community.qlik.com/t5/QlikView/Filtering-journal-entries-for-above-average-values/m-p/906396#M471025</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you could do this with a preceding load &lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/thread/15278"&gt;having clause in Qlikview&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2015 15:25:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filtering-journal-entries-for-above-average-values/m-p/906396#M471025</guid>
      <dc:creator>ramoncova06</dc:creator>
      <dc:date>2015-04-14T15:25:08Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering journal entries for above average values</title>
      <link>https://community.qlik.com/t5/QlikView/Filtering-journal-entries-for-above-average-values/m-p/906397#M471026</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the idea, I am going to give that a try. I guess it will take two separate loads then, if I want to load the entire data and add a category field (one load for values above average and one for the rest).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Ralf&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Apr 2015 08:03:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filtering-journal-entries-for-above-average-values/m-p/906397#M471026</guid>
      <dc:creator />
      <dc:date>2015-04-15T08:03:26Z</dc:date>
    </item>
  </channel>
</rss>

