<?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: Is this Excel Calculation possible in Qlikview? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Is-this-Excel-Calculation-possible-in-Qlikview/m-p/564611#M210716</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes. Like attached sample.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 28 Apr 2014 06:56:27 GMT</pubDate>
    <dc:creator>tresB</dc:creator>
    <dc:date>2014-04-28T06:56:27Z</dc:date>
    <item>
      <title>Is this Excel Calculation possible in Qlikview?</title>
      <link>https://community.qlik.com/t5/QlikView/Is-this-Excel-Calculation-possible-in-Qlikview/m-p/564610#M210715</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to do one calculation in Qlikview which is done in Excel, need to replicate the same calculation in Qlikview.&amp;nbsp; Please refer the attached excel file and refer column C for the formulae.&amp;nbsp; I tried using Below(), but now working as expected.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your suggestions in advance.&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;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Apr 2014 06:28:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Is-this-Excel-Calculation-possible-in-Qlikview/m-p/564610#M210715</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2014-04-28T06:28:28Z</dc:date>
    </item>
    <item>
      <title>Re: Is this Excel Calculation possible in Qlikview?</title>
      <link>https://community.qlik.com/t5/QlikView/Is-this-Excel-Calculation-possible-in-Qlikview/m-p/564611#M210716</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes. Like attached sample.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Apr 2014 06:56:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Is-this-Excel-Calculation-possible-in-Qlikview/m-p/564611#M210716</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2014-04-28T06:56:27Z</dc:date>
    </item>
    <item>
      <title>Re: Is this Excel Calculation possible in Qlikview?</title>
      <link>https://community.qlik.com/t5/QlikView/Is-this-Excel-Calculation-possible-in-Qlikview/m-p/564612#M210717</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;T1:&lt;/P&gt;&lt;P&gt;Load *, RowNo() as NO Inline [&lt;/P&gt;&lt;P&gt;Group, Sales&lt;/P&gt;&lt;P&gt;1, 100&lt;/P&gt;&lt;P&gt;2, 150&lt;/P&gt;&lt;P&gt;3, 200&lt;/P&gt;&lt;P&gt;4, 100&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;Join&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load NO,&lt;/P&gt;&lt;P&gt;&amp;nbsp; IF(RowNO() = 1, 0, RangeSum(Peek(CalcValue),-Previous(Sales))) as CalcValue&lt;/P&gt;&lt;P&gt;Resident T1&lt;/P&gt;&lt;P&gt;Order By NO desc;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Apr 2014 07:21:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Is-this-Excel-Calculation-possible-in-Qlikview/m-p/564612#M210717</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2014-04-28T07:21:42Z</dc:date>
    </item>
    <item>
      <title>Re: Is this Excel Calculation possible in Qlikview?</title>
      <link>https://community.qlik.com/t5/QlikView/Is-this-Excel-Calculation-possible-in-Qlikview/m-p/564613#M210718</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Temp:&lt;/P&gt;&lt;P&gt;LOAD Group,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sales&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[Test Values.xlsx]&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Result: &lt;/P&gt;&lt;P&gt;LOAD * &lt;/P&gt;&lt;P&gt;&amp;nbsp; , if(RowNo()=1, 0,Peek(Calc)-Previous(Sales)) as Calc &lt;/P&gt;&lt;P&gt;Resident Temp &lt;/P&gt;&lt;P&gt;Order by Group desc; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;drop table Temp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Apr 2014 07:26:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Is-this-Excel-Calculation-possible-in-Qlikview/m-p/564613#M210718</guid>
      <dc:creator>anbu1984</dc:creator>
      <dc:date>2014-04-28T07:26:06Z</dc:date>
    </item>
    <item>
      <title>Re: Is this Excel Calculation possible in Qlikview?</title>
      <link>https://community.qlik.com/t5/QlikView/Is-this-Excel-Calculation-possible-in-Qlikview/m-p/564614#M210719</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tresesco,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I applied the same logic in my Dashboard the values are not matching with the Qlikview expression and Excel Calculation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please find the attached updated Excel file , need to do the same calculation in Column D of excel file in Qlikview.&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, 28 Apr 2014 07:31:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Is-this-Excel-Calculation-possible-in-Qlikview/m-p/564614#M210719</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2014-04-28T07:31:54Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Is this Excel Calculation possible in Qlikview?</title>
      <link>https://community.qlik.com/t5/QlikView/Is-this-Excel-Calculation-possible-in-Qlikview/m-p/564615#M210720</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jagan,&lt;/P&gt;&lt;P&gt;Probably you are missing TOTAL keyword. Please find here your expected output attached&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Apr 2014 07:47:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Is-this-Excel-Calculation-possible-in-Qlikview/m-p/564615#M210720</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2014-04-28T07:47:46Z</dc:date>
    </item>
    <item>
      <title>Re: Is this Excel Calculation possible in Qlikview?</title>
      <link>https://community.qlik.com/t5/QlikView/Is-this-Excel-Calculation-possible-in-Qlikview/m-p/564616#M210721</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Tresesco.&amp;nbsp; Missed Total in the expression.&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, 28 Apr 2014 09:04:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Is-this-Excel-Calculation-possible-in-Qlikview/m-p/564616#M210721</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2014-04-28T09:04:52Z</dc:date>
    </item>
  </channel>
</rss>

