<?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: Bottom 5 sales in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Bottom-5-sales/m-p/759714#M270332</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you sure that my following expression will give all 15 records ?&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; line-height: 1.5em; background-color: #f6f6f6;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; line-height: 1.5em; background-color: #f6f6f6;"&gt;If(Aggr(Rank(SUM(Revenue),4),Account)&amp;gt;=15,Account)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; line-height: 1.5em; background-color: #f6f6f6;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; line-height: 1.5em; background-color: #f6f6f6;"&gt;Because it will give only records having ranks either equal to greater than 15.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; line-height: 1.5em; background-color: #f6f6f6;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; line-height: 1.5em; background-color: #f6f6f6;"&gt;thanks&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 12 Jan 2015 11:37:19 GMT</pubDate>
    <dc:creator>nikhilgarg</dc:creator>
    <dc:date>2015-01-12T11:37:19Z</dc:date>
    <item>
      <title>Bottom 5 sales</title>
      <link>https://community.qlik.com/t5/QlikView/Bottom-5-sales/m-p/759707#M270325</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am using this expression to find comparison between Actual Margin and Quoted Margin sorted for&amp;nbsp; 5 highest revenue&amp;nbsp; giving account using this expression &lt;/P&gt;&lt;P&gt;If(Aggr(Rank(SUM(Revenue),4),Account)&amp;lt;=5,Account), however i am trying to calculate same thing for&amp;nbsp; bottom 5 revenue , &lt;/P&gt;&lt;P&gt;please suggest&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Jan 2015 07:51:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Bottom-5-sales/m-p/759707#M270325</guid>
      <dc:creator />
      <dc:date>2015-01-09T07:51:35Z</dc:date>
    </item>
    <item>
      <title>Re: Bottom 5 sales</title>
      <link>https://community.qlik.com/t5/QlikView/Bottom-5-sales/m-p/759708#M270326</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:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One way to derive bottom 5 records,the aggregate value need to multiplied by -1.&lt;/P&gt;&lt;P&gt;=aggr(If(RANK(aggr(&lt;STRONG&gt;-1&lt;/STRONG&gt; * sum(Revenue),&amp;nbsp; Account)) &amp;lt;= 5, Account), Account )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If(Aggr(Rank(-SUM(Revenue),4),Account)&amp;lt;=5,Account)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=aggr(if(rank(-sum(Revenue))&amp;lt;=5,Account),Account)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Neetha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Jan 2015 08:25:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Bottom-5-sales/m-p/759708#M270326</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-01-09T08:25:50Z</dc:date>
    </item>
    <item>
      <title>Re: Bottom 5 sales</title>
      <link>https://community.qlik.com/t5/QlikView/Bottom-5-sales/m-p/759709#M270327</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Neetha&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i tried both expression but its&amp;nbsp; not working in my case , for you i have attached sample excel file and a qvw file, kindly review and suggest.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jan 2015 10:26:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Bottom-5-sales/m-p/759709#M270327</guid>
      <dc:creator />
      <dc:date>2015-01-12T10:26:04Z</dc:date>
    </item>
    <item>
      <title>Re: Bottom 5 sales</title>
      <link>https://community.qlik.com/t5/QlikView/Bottom-5-sales/m-p/759710#M270328</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I can't open the .qvw, can you provide me with the dimensions and expressions?&amp;nbsp; Looking at your question, have you experimented with dimension limits, using the "Show Only" smallest 5?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jan 2015 10:46:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Bottom-5-sales/m-p/759710#M270328</guid>
      <dc:creator>jzimolong</dc:creator>
      <dc:date>2015-01-12T10:46:33Z</dc:date>
    </item>
    <item>
      <title>Re: Bottom 5 sales</title>
      <link>https://community.qlik.com/t5/QlikView/Bottom-5-sales/m-p/759711#M270329</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HEy,&lt;/P&gt;&lt;P&gt;I think if you have 20 records then you want last five records. Right ??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In that case you should use following expr:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;If(Aggr(Rank(SUM(Revenue),4),Account)&amp;gt;=15,Account)`&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;I think it should work&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jan 2015 11:08:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Bottom-5-sales/m-p/759711#M270329</guid>
      <dc:creator>nikhilgarg</dc:creator>
      <dc:date>2015-01-12T11:08:40Z</dc:date>
    </item>
    <item>
      <title>Re: Bottom 5 sales</title>
      <link>https://community.qlik.com/t5/QlikView/Bottom-5-sales/m-p/759712#M270330</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am using Calculated&amp;nbsp; Dimension "If(Aggr(Rank(-SUM(Revenue),4),AccountName)&amp;gt;5,AccountName)" and using expression to calculate actual margin and quoted margin &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;(SUM(Revenue) - SUM(Cost))/SUM(Revenue) -for actual margin&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(SUM(QuotedPrice) - SUM(QuotedCost)) / (SUM(QuotedPrice))-for quoted margin&lt;/P&gt;&lt;P&gt;i am trying to show comparison between actual margin and quoted margin of five bottom most revenue generating project. if i use dimension limits it will restrict accordingly depending on first expression which is expression calculate actual margin.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jan 2015 11:15:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Bottom-5-sales/m-p/759712#M270330</guid>
      <dc:creator />
      <dc:date>2015-01-12T11:15:14Z</dc:date>
    </item>
    <item>
      <title>Re: Bottom 5 sales</title>
      <link>https://community.qlik.com/t5/QlikView/Bottom-5-sales/m-p/759713#M270331</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;I am using Calculated&amp;nbsp; Dimension "If(Aggr(Rank(-SUM(Revenue),4),AccountName)&amp;gt;5,AccountName)" and using expression to calculate actual margin and quoted margin&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: inherit;"&gt;(SUM(Revenue) - SUM(Cost))/SUM(Revenue) -for actual margin&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;(SUM(QuotedPrice) - SUM(QuotedCost)) / (SUM(QuotedPrice))-for quoted margin&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;i am trying to show comparison between actual margin and quoted margin of five bottom most revenue generating project. if i use dimension limits it will restrict accordingly depending on first expression which is expression calculate actual margin.&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;the expression that you suggested will give all 15 records &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jan 2015 11:26:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Bottom-5-sales/m-p/759713#M270331</guid>
      <dc:creator />
      <dc:date>2015-01-12T11:26:31Z</dc:date>
    </item>
    <item>
      <title>Re: Bottom 5 sales</title>
      <link>https://community.qlik.com/t5/QlikView/Bottom-5-sales/m-p/759714#M270332</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you sure that my following expression will give all 15 records ?&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; line-height: 1.5em; background-color: #f6f6f6;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; line-height: 1.5em; background-color: #f6f6f6;"&gt;If(Aggr(Rank(SUM(Revenue),4),Account)&amp;gt;=15,Account)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; line-height: 1.5em; background-color: #f6f6f6;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; line-height: 1.5em; background-color: #f6f6f6;"&gt;Because it will give only records having ranks either equal to greater than 15.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; line-height: 1.5em; background-color: #f6f6f6;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; line-height: 1.5em; background-color: #f6f6f6;"&gt;thanks&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jan 2015 11:37:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Bottom-5-sales/m-p/759714#M270332</guid>
      <dc:creator>nikhilgarg</dc:creator>
      <dc:date>2015-01-12T11:37:19Z</dc:date>
    </item>
    <item>
      <title>Re: Bottom 5 sales</title>
      <link>https://community.qlik.com/t5/QlikView/Bottom-5-sales/m-p/759715#M270333</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;According to your excel sheet Bottom 5 Account Name should be :&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width: 289pt;" width="385"&gt;&lt;TBODY&gt;&lt;TR style="height: 12.75pt;"&gt;&lt;TD class="xl65" height="17" style="height: 12.75pt; width: 176pt;" width="235"&gt;B&lt;/TD&gt;&lt;TD align="right" class="xl66" style="border-left: none; width: 113pt;" width="150"&gt;$1,880.00&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 12.75pt;"&gt;&lt;TD class="xl65" height="17" style="height: 12.75pt; border-top: none;"&gt;A&lt;/TD&gt;&lt;TD align="right" class="xl66" style="border-top: none; border-left: none;"&gt;$1,500.00&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 12.75pt;"&gt;&lt;TD class="xl65" height="17" style="height: 12.75pt; border-top: none;"&gt;D&lt;/TD&gt;&lt;TD align="right" class="xl66" style="border-top: none; border-left: none;"&gt;$1,200.00&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 12.75pt;"&gt;&lt;TD class="xl65" height="17" style="height: 12.75pt; border-top: none;"&gt;C&lt;/TD&gt;&lt;TD align="right" class="xl66" style="border-top: none; border-left: none;"&gt;$930.00&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 12.75pt;"&gt;&lt;TD class="xl65" height="17" style="height: 12.75pt; border-top: none;"&gt;C&lt;/TD&gt;&lt;TD align="right" class="xl66" style="border-top: none; border-left: none;"&gt;$358.30&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt; Right??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kavita&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jan 2015 12:24:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Bottom-5-sales/m-p/759715#M270333</guid>
      <dc:creator>kavita25</dc:creator>
      <dc:date>2015-01-12T12:24:13Z</dc:date>
    </item>
    <item>
      <title>Re: Bottom 5 sales</title>
      <link>https://community.qlik.com/t5/QlikView/Bottom-5-sales/m-p/759716#M270334</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prashant,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check attached files.&lt;/P&gt;&lt;P&gt;Please check is it&amp;nbsp; as per your requirement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Neetha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jan 2015 12:47:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Bottom-5-sales/m-p/759716#M270334</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-01-12T12:47:20Z</dc:date>
    </item>
    <item>
      <title>Re: Bottom 5 sales</title>
      <link>https://community.qlik.com/t5/QlikView/Bottom-5-sales/m-p/759717#M270335</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prashant,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;If&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Aggr&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Rank&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(-&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;SUM&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Total Invoiced Revenue]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;),4),&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;AccountName&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;)&amp;lt;=5,&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;AccountName&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Jan 2015 08:11:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Bottom-5-sales/m-p/759717#M270335</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-01-13T08:11:17Z</dc:date>
    </item>
    <item>
      <title>Re: Bottom 5 sales</title>
      <link>https://community.qlik.com/t5/QlikView/Bottom-5-sales/m-p/759718#M270336</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey neetha,&lt;/P&gt;&lt;P&gt;Cann't we do like this that:&lt;/P&gt;&lt;P&gt;Select AccountName as Dimension&lt;/P&gt;&lt;P&gt;Put below expression :&lt;/P&gt;&lt;P&gt;Sum({&amp;lt;AccountName = {"=Rank(Sum([Total Invoiced Revenue]))&amp;lt; 5"}&amp;gt;}[Total Invoiced Revenue])&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; is this approach right ??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Jan 2015 08:17:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Bottom-5-sales/m-p/759718#M270336</guid>
      <dc:creator>nikhilgarg</dc:creator>
      <dc:date>2015-01-13T08:17:42Z</dc:date>
    </item>
    <item>
      <title>Re: Bottom 5 sales</title>
      <link>https://community.qlik.com/t5/QlikView/Bottom-5-sales/m-p/759719#M270337</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Depending on requirement we can use this&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Jan 2015 08:27:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Bottom-5-sales/m-p/759719#M270337</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-01-13T08:27:13Z</dc:date>
    </item>
    <item>
      <title>Re: Bottom 5 sales</title>
      <link>https://community.qlik.com/t5/QlikView/Bottom-5-sales/m-p/759720#M270338</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ohk ,&lt;/P&gt;&lt;P&gt;but actually it is not giving the correct result &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/sad.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Jan 2015 08:32:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Bottom-5-sales/m-p/759720#M270338</guid>
      <dc:creator>nikhilgarg</dc:creator>
      <dc:date>2015-01-13T08:32:28Z</dc:date>
    </item>
    <item>
      <title>Re: Bottom 5 sales</title>
      <link>https://community.qlik.com/t5/QlikView/Bottom-5-sales/m-p/759721#M270339</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Its grouping the Total Invoiced Revenue data and giving results for account&amp;nbsp; name&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Jan 2015 08:36:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Bottom-5-sales/m-p/759721#M270339</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-01-13T08:36:47Z</dc:date>
    </item>
    <item>
      <title>Re: Bottom 5 sales</title>
      <link>https://community.qlik.com/t5/QlikView/Bottom-5-sales/m-p/759722#M270340</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ohk,&lt;/P&gt;&lt;P&gt;Then how to get the last 5 account names based on &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f6f6f6;"&gt;Total Invoiced Revenue data ??&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Jan 2015 09:38:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Bottom-5-sales/m-p/759722#M270340</guid>
      <dc:creator>nikhilgarg</dc:creator>
      <dc:date>2015-01-13T09:38:19Z</dc:date>
    </item>
  </channel>
</rss>

