<?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 Maximum Drawdown in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Maximum-Drawdown/m-p/957563#M949877</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;is it possible to compute this maximum drawdown in Qlikview instead of Excel?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for helping me!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 04 Dec 2015 20:35:19 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-12-04T20:35:19Z</dc:date>
    <item>
      <title>Maximum Drawdown</title>
      <link>https://community.qlik.com/t5/QlikView/Maximum-Drawdown/m-p/957563#M949877</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;is it possible to compute this maximum drawdown in Qlikview instead of Excel?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for helping me!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Dec 2015 20:35:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Maximum-Drawdown/m-p/957563#M949877</guid>
      <dc:creator />
      <dc:date>2015-12-04T20:35:19Z</dc:date>
    </item>
    <item>
      <title>Re: Maximum Drawdown</title>
      <link>https://community.qlik.com/t5/QlikView/Maximum-Drawdown/m-p/957564#M949878</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you looking for a script based solution or front end?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Dec 2015 20:54:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Maximum-Drawdown/m-p/957564#M949878</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-12-04T20:54:40Z</dc:date>
    </item>
    <item>
      <title>Re: Maximum Drawdown</title>
      <link>https://community.qlik.com/t5/QlikView/Maximum-Drawdown/m-p/957565#M949879</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try a straight table chart with dimension Date and expressions&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Course:&lt;/P&gt;&lt;P&gt;=Course // or how you do the course calculation&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max:&lt;/P&gt;&lt;P&gt;=RangeMax( Above( YourCourseExpression, 0, RowNo() ))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DrawDown:&lt;/P&gt;&lt;P&gt;=Column(2) / Column(1) -1&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Dec 2015 21:01:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Maximum-Drawdown/m-p/957565#M949879</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2015-12-04T21:01:24Z</dc:date>
    </item>
    <item>
      <title>Re: Maximum Drawdown</title>
      <link>https://community.qlik.com/t5/QlikView/Maximum-Drawdown/m-p/957566#M949880</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, you can try:&lt;/P&gt;&lt;P&gt;Sum(Aggr(Sum(Course),Date)/Aggr(Sum(Max),Date))/Count(DISTINCT Date)-1&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Dec 2015 21:02:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Maximum-Drawdown/m-p/957566#M949880</guid>
      <dc:creator>joris_lansdaal</dc:creator>
      <dc:date>2015-12-04T21:02:50Z</dc:date>
    </item>
    <item>
      <title>Re: Maximum Drawdown</title>
      <link>https://community.qlik.com/t5/QlikView/Maximum-Drawdown/m-p/957567#M949881</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Script based:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Table:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD *,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; Num(Max/Course - 1, '#,##0.0%') as Drawdown;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD *,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; RangeMax(Course, Peek('Max')) as Max;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD * INLINE [&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date, Course&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 12/1/2015, 100&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 12/2/2015, 110&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 12/3/2015, 120&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 12/4/2015, 115&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 12/5/2015, 110&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 12/6/2015, 120&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 12/7/2015, 160&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 12/8/2015, 200&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 12/9/2015, 180&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 12/10/2015, 220&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;];&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/108147_Capture.PNG" style="height: auto;" /&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Dec 2015 21:03:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Maximum-Drawdown/m-p/957567#M949881</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-12-04T21:03:30Z</dc:date>
    </item>
    <item>
      <title>Re: Maximum Drawdown</title>
      <link>https://community.qlik.com/t5/QlikView/Maximum-Drawdown/m-p/957568#M949882</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi sunny,&lt;/P&gt;&lt;P&gt;thanks for helping me! Also thanks to swuehl and Joris.&lt;/P&gt;&lt;P&gt;But sunny's method doesn't work for now. I think it's because I use the Excelsheet and didn't know how to Change the script that it fits. Your Scriptcode with Inline works fine but is unuseful for me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the way my script looks like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date, &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Course&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;FROM&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;C&gt;&lt;/C&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;(ooxml, embedded labels, table is Tabelle1);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Table:&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;LOAD *,&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&amp;nbsp; Num(Max/Course - 1, '#,##0.0%') as Drawdown;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;LOAD *,&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&amp;nbsp; RangeMax(Course, Peek('Max')) as Max;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is no Errormessage, but the Fields don't load.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Dec 2015 21:25:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Maximum-Drawdown/m-p/957568#M949882</guid>
      <dc:creator />
      <dc:date>2015-12-08T21:25:56Z</dc:date>
    </item>
    <item>
      <title>Re: Maximum Drawdown</title>
      <link>https://community.qlik.com/t5/QlikView/Maximum-Drawdown/m-p/957569#M949883</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your order is incorrect, try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Table:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD *,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; Num(Max/Course - 1, '#,##0.0%') as Drawdown;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD *,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; RangeMax(Course, Peek('Max')) as Max;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;LOAD Date, &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Course&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;FROM&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&lt;C&gt;&lt;/C&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;(ooxml, embedded labels, table is Tabelle1);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Dec 2015 21:29:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Maximum-Drawdown/m-p/957569#M949883</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-12-08T21:29:28Z</dc:date>
    </item>
  </channel>
</rss>

