<?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 How to calculate rate in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-calculate-rate/m-p/154766#M502100</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Isaac,&lt;/P&gt;&lt;P&gt;I don't think it's possible because of the modifier with an explicit call to a function (IsNum()). I'd rather use a detached gauge chart (object properties, detach).&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 05 Jan 2011 11:53:12 GMT</pubDate>
    <dc:creator>Miguel_Angel_Baeyens</dc:creator>
    <dc:date>2011-01-05T11:53:12Z</dc:date>
    <item>
      <title>How to calculate rate</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-calculate-rate/m-p/154758#M502092</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I have one table:&lt;/P&gt;&lt;P&gt;load * Inline&lt;BR /&gt;[OrderId,SubOrderId&lt;BR /&gt; 1,1&lt;BR /&gt; 2,2&lt;BR /&gt; 3&lt;BR /&gt; 4&lt;BR /&gt;]&lt;/P&gt;&lt;P&gt;I want to calculate how many records have sub order, in this case, it is 2/4 .&lt;/P&gt;&lt;P&gt;Could you help me out?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jan 2011 09:17:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-calculate-rate/m-p/154758#M502092</guid>
      <dc:creator />
      <dc:date>2011-01-05T09:17:02Z</dc:date>
    </item>
    <item>
      <title>How to calculate rate</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-calculate-rate/m-p/154759#M502093</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Isaac,&lt;/P&gt;&lt;P&gt;I'd create a new flag field and use it in the expression:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;LOAD *, If(Len(SubOrderId) &amp;gt; 0, 1, 0) AS FlagHasSubOrderRESIDENT Table; DROP TABLE Table; // To avoid unwanted syn keys&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Expression should look like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;Count({&amp;lt; FlagHasSubOrder = {1} &amp;gt;} OrderId) / Count({1} OrderId)&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Hope this helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jan 2011 09:24:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-calculate-rate/m-p/154759#M502093</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2011-01-05T09:24:52Z</dc:date>
    </item>
    <item>
      <title>How to calculate rate</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-calculate-rate/m-p/154760#M502094</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Thanks for your quick reply.&lt;/P&gt;&lt;P&gt;But is there any other method that just uses expression directly?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jan 2011 09:37:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-calculate-rate/m-p/154760#M502094</guid>
      <dc:creator />
      <dc:date>2011-01-05T09:37:23Z</dc:date>
    </item>
    <item>
      <title>How to calculate rate</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-calculate-rate/m-p/154761#M502095</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Issaac,&lt;/P&gt;&lt;P&gt;Try this one&lt;/P&gt;&lt;P&gt;count(Col_Name)&lt;/P&gt;&lt;P&gt;Hope its useful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jan 2011 09:47:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-calculate-rate/m-p/154761#M502095</guid>
      <dc:creator />
      <dc:date>2011-01-05T09:47:21Z</dc:date>
    </item>
    <item>
      <title>How to calculate rate</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-calculate-rate/m-p/154762#M502096</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Since you are loading form an inline table, this expression should work&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;=Count({&amp;lt; SubOrderId = {"=IsNum(SubOrderId)"} &amp;gt;} SubOrderId) / Count(OrderId)&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Depending on how your data source and driver deals with nulls, that set analysis may not work.&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jan 2011 09:48:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-calculate-rate/m-p/154762#M502096</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2011-01-05T09:48:54Z</dc:date>
    </item>
    <item>
      <title>How to calculate rate</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-calculate-rate/m-p/154763#M502097</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks it works, but I was wondering what is the meaning of this: {"=IsNum(SubOrderId)"}, what will it return?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jan 2011 10:18:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-calculate-rate/m-p/154763#M502097</guid>
      <dc:creator />
      <dc:date>2011-01-05T10:18:24Z</dc:date>
    </item>
    <item>
      <title>How to calculate rate</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-calculate-rate/m-p/154764#M502098</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 mean, if there are selection have been choosen, this rate will be changed.&lt;/P&gt;&lt;P&gt;I want to it keep 50% permanent. I know I need to add 1 not $ into this expression, but how to do it?&lt;/P&gt;&lt;P&gt;=Count({&amp;lt; SubOrderId = { "=IsNum(SubOrderId)" } &amp;gt;} SubOrderId)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jan 2011 10:49:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-calculate-rate/m-p/154764#M502098</guid>
      <dc:creator />
      <dc:date>2011-01-05T10:49:50Z</dc:date>
    </item>
    <item>
      <title>How to calculate rate</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-calculate-rate/m-p/154765#M502099</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This filters so that SubOrderId has any value that can be represented as numeric. Similar to this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;Count({&amp;lt; CompanyName = {"=Left(CompanyName, 1) &amp;gt; 3"} &amp;gt;} OrderId)&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;In case you have several companies which names start in a number, this will count the number of Orders for all companies which first letter in name is greater than 3. Kind of dummy example.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jan 2011 11:10:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-calculate-rate/m-p/154765#M502099</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2011-01-05T11:10:29Z</dc:date>
    </item>
    <item>
      <title>How to calculate rate</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-calculate-rate/m-p/154766#M502100</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Isaac,&lt;/P&gt;&lt;P&gt;I don't think it's possible because of the modifier with an explicit call to a function (IsNum()). I'd rather use a detached gauge chart (object properties, detach).&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jan 2011 11:53:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-calculate-rate/m-p/154766#M502100</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2011-01-05T11:53:12Z</dc:date>
    </item>
    <item>
      <title>How to calculate rate</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-calculate-rate/m-p/154767#M502101</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 confused by the set analysis, when shall I use $ or not.&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;P&gt;If I want to get the Max month Amount based on the selection:&lt;/P&gt;&lt;P&gt;It works:&lt;/P&gt;&lt;P&gt;=sum({$&amp;lt;MonthOfYear={"=Max(MonthOfYear)-1"}&amp;gt;}Amount)&lt;/P&gt;&lt;P&gt;But I want to get the amount of the month before the max month, I use&lt;/P&gt;&lt;P&gt;=sum({$&amp;lt;MonthOfYear={"=Max(MonthOfYear)-1"}&amp;gt;}Amount)&lt;/P&gt;&lt;P&gt;But it does not work.&lt;/P&gt;&lt;P&gt;But this expression works:&lt;/P&gt;&lt;P&gt;=sum({$&amp;lt;MonthOfYear={$(=Max(MonthOfYear)-1)}&amp;gt;}Amount)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So what's wrong with them?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jan 2011 07:38:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-calculate-rate/m-p/154767#M502101</guid>
      <dc:creator />
      <dc:date>2011-01-06T07:38:39Z</dc:date>
    </item>
    <item>
      <title>How to calculate rate</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-calculate-rate/m-p/154768#M502102</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Isaac,&lt;/P&gt;&lt;P&gt;There are two things here:&lt;/P&gt;&lt;P&gt;In Set Analysis, "$" as a part of the set or preceding the set modifier means "the current state of selections", that is the filters specified in Set Analysis will be done on the basis of the already done. You don't need to set this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;Sum({$&amp;lt; Country = {'ES'} &amp;gt;} Amount) or Sum({&amp;lt; Country = {'ES'} &amp;gt;} Amount)&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Both will return the same results.&lt;/P&gt;&lt;P&gt;Don't mix that up with the dollar expansion for functions or variables that may or may not be used in Set Analysis. As a general rule, every time you want to evaluate a variable (not only show its content, but evaluate the content and return it result) you will need to use the $(). Example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;SET vSum = 1 + 1;// Now vSum will return the string "1 + 1"// But $(vSum) will return "2"&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;In your case, $(=Max()) is evaluating the function and returning its result, and that's why it's working.&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jan 2011 11:53:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-calculate-rate/m-p/154768#M502102</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2011-01-06T11:53:39Z</dc:date>
    </item>
    <item>
      <title>How to calculate rate</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-calculate-rate/m-p/154769#M502103</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;But what's the meaning of the bold expression: =sum({$&amp;lt;MonthOfYear={"&lt;STRONG&gt;=Max(MonthOfYear)&lt;/STRONG&gt;"}&amp;gt;}Amount)?&lt;/P&gt;&lt;P&gt;Is it a set or function? If it is a function, why does not need to use $ and just use double quote?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know the above set works, but if I want to use this form that does not use $ to get the amount that is before the max month:&lt;/P&gt;&lt;P&gt;=sum({$&amp;lt;MonthOfYear={ "&lt;STRONG&gt;=Max(MonthOfYear)-1&lt;/STRONG&gt;"}&amp;gt;}Amount)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It does not work, it the responses the same result with =sum({$&amp;lt;MonthOfYear={"&lt;STRONG&gt;=Max(MonthOfYear)&lt;/STRONG&gt;"}&amp;gt;}Amount).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am sunk!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks sir.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Isaac Li&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jan 2011 02:57:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-calculate-rate/m-p/154769#M502103</guid>
      <dc:creator />
      <dc:date>2011-01-07T02:57:04Z</dc:date>
    </item>
    <item>
      <title>How to calculate rate</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-calculate-rate/m-p/154770#M502104</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Isaac,&lt;/P&gt;&lt;P&gt;The bold part is a function within a set analysis modifier. It's used for example when you need to call the same field you are using in the field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;Sum({&amp;lt; CompanyID = {"=Left(CompanyID, 2) = 'ES'"} &amp;gt;} Amount)&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;That will sum all amounts where company starts in "ES".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;Sum({&amp;lt; CompanyID = {"=Sum(Expenses) &amp;gt; 1000"} &amp;gt;} Amount)&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;That will sum all amounts for companies that have expenses greater than 1000.&lt;/P&gt;&lt;P&gt;But if you want to get the value itself (in your case, the month previous to the last month loaded) that is a result of an evaluation to be passed on to the filter to select those values, then the proper syntax to use a function within set analysis is using dollar expansion:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;Sum({&amp;lt; Date = {'&amp;gt;=$(=YearStart(Today()))'} &amp;gt;} Amount)&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jan 2011 21:30:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-calculate-rate/m-p/154770#M502104</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2011-01-07T21:30:37Z</dc:date>
    </item>
    <item>
      <title>How to calculate rate</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-calculate-rate/m-p/154771#M502105</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 get it, but why I can not use "-1" in the set analysis?&lt;/P&gt;&lt;P&gt;sum({$&amp;lt;MonthOfYear={ "=Max(MonthOfYear)&lt;STRONG&gt;-1&lt;/STRONG&gt;"}&amp;gt;}Amount)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Jan 2011 10:50:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-calculate-rate/m-p/154771#M502105</guid>
      <dc:creator />
      <dc:date>2011-01-08T10:50:34Z</dc:date>
    </item>
    <item>
      <title>How to calculate rate</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-calculate-rate/m-p/154772#M502106</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As I told above, that needs to be evaluated (it's not a result by itself), so that's why you need to do&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;sum({$&amp;lt;MonthOfYear={ '$(=Max(MonthOfYear)-1&lt;STRONG&gt;)'&lt;/STRONG&gt;}&amp;gt;}Amount)&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;"1" is a numeric value, it doesn't need to be evaluated, and as such, it may be used as a field filter selection in set analysis or in the script.&lt;/P&gt;&lt;P&gt;"1 + 1" its not a numeric value, unless it's evaluated. It may be a string that for any reason you want to keep that way. Note that there are not data types as such in QlikView, rather than numeric and literal representations of any value, and that's why you need functions.&lt;/P&gt;&lt;P&gt;It's a question of syntax, as it happens in any other programming languange. Functions usually need to be evaluated.&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 09 Jan 2011 02:04:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-calculate-rate/m-p/154772#M502106</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2011-01-09T02:04:34Z</dc:date>
    </item>
    <item>
      <title>How to calculate rate</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-calculate-rate/m-p/154773#M502107</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OK, thanks, now I am clear about it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks sir.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 09 Jan 2011 12:59:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-calculate-rate/m-p/154773#M502107</guid>
      <dc:creator />
      <dc:date>2011-01-09T12:59:01Z</dc:date>
    </item>
  </channel>
</rss>

