<?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: Remove first selected value in chart expression in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Remove-first-selected-value-in-chart-expression/m-p/749624#M267449</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Front-end? Try expression like:&lt;/P&gt;&lt;P&gt;If(Above(total Equipment)=Equipment,[MTTF(Days)])&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The similar could be done in script as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: here sort order and aggregation matter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PFA&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 17 Dec 2014 12:06:14 GMT</pubDate>
    <dc:creator>tresB</dc:creator>
    <dc:date>2014-12-17T12:06:14Z</dc:date>
    <item>
      <title>Remove first selected value in chart expression</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-first-selected-value-in-chart-expression/m-p/749614#M267439</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Experts &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Help me removing first row in chart flat table&amp;nbsp; and chart expression. Need to remove MTTF 104 from chart table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Following expression is used to obtain below result.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=ceil(fabs(sum({&amp;lt;Plant={$(vWERKS)}&amp;gt;}if(Date(EQM_AUSVN,'M/D/YYYY') &amp;gt;=v_YTM_MONTH and Date(EQM_AUSVN,'D/M/YYYY')&amp;lt;=(v_FTM_DATE),MTBF ))&lt;/P&gt;&lt;P&gt;/Count({&amp;lt;Plant={$(vWERKS)}&amp;gt;}if(Date(EQM_AUSVN,'D/M/YYYY') &amp;gt;=v_YTM_MONTH and Date(EQM_AUSVN,'D/M/YYYY')&amp;lt;=(v_FTM_DATE),if(EQM_MSAUS='X',EQM_QMNUM)))))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width: 377px;"&gt;&lt;TBODY&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.qlik.com/legacyfs/online/73663_pastedImage_0.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ashif&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Dec 2014 06:37:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-first-selected-value-in-chart-expression/m-p/749614#M267439</guid>
      <dc:creator />
      <dc:date>2014-12-17T06:37:23Z</dc:date>
    </item>
    <item>
      <title>Re: Remove first selected value in chart expression</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-first-selected-value-in-chart-expression/m-p/749615#M267440</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;=If(RowNo() &amp;gt;1 , your_expression)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Dec 2014 06:44:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-first-selected-value-in-chart-expression/m-p/749615#M267440</guid>
      <dc:creator>anbu1984</dc:creator>
      <dc:date>2014-12-17T06:44:16Z</dc:date>
    </item>
    <item>
      <title>Re: Remove first selected value in chart expression</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-first-selected-value-in-chart-expression/m-p/749616#M267441</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1)You will have to change the dimension and not expression for that.&lt;/P&gt;&lt;P&gt;for example:&lt;/P&gt;&lt;P&gt;if(Date([Start Days],'DD/MM/YYYY')&amp;gt;'01/12/2013',CLASS)&lt;/P&gt;&lt;P&gt;2)Or lese if you have RowNo then&lt;BR /&gt;=if(RowNo()&amp;gt;1,Expression)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Dec 2014 06:46:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-first-selected-value-in-chart-expression/m-p/749616#M267441</guid>
      <dc:creator>saumyashah90</dc:creator>
      <dc:date>2014-12-17T06:46:18Z</dc:date>
    </item>
    <item>
      <title>Re: Remove first selected value in chart expression</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-first-selected-value-in-chart-expression/m-p/749617#M267442</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It not working can you suggest other ways.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ashif&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Dec 2014 07:06:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-first-selected-value-in-chart-expression/m-p/749617#M267442</guid>
      <dc:creator />
      <dc:date>2014-12-17T07:06:03Z</dc:date>
    </item>
    <item>
      <title>Re: Remove first selected value in chart expression</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-first-selected-value-in-chart-expression/m-p/749618#M267443</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you please attach the qvw?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Dec 2014 07:07:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-first-selected-value-in-chart-expression/m-p/749618#M267443</guid>
      <dc:creator>saumyashah90</dc:creator>
      <dc:date>2014-12-17T07:07:37Z</dc:date>
    </item>
    <item>
      <title>Re: Remove first selected value in chart expression</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-first-selected-value-in-chart-expression/m-p/749619#M267444</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I can post the all data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width: 379px;"&gt;&lt;TBODY&gt;&lt;TR style="height: 12.75pt;"&gt;&lt;TD class="xl24" height="17" style="height: 12.75pt; width: 85pt;" width="113"&gt;CLASS&lt;/TD&gt;&lt;TD class="xl24" style="border-left: none; width: 50pt;" width="66"&gt;Equipment&lt;/TD&gt;&lt;TD class="xl24" style="border-left: none; width: 47pt;" width="63"&gt;Start Date&lt;/TD&gt;&lt;TD class="xl24" style="border-left: none; width: 47pt;" width="62"&gt;End Date&lt;/TD&gt;&lt;TD class="xl24" style="border-left: none; width: 56pt;" width="75"&gt;MTTF(Days)&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 12.75pt;"&gt;&lt;TD class="xl25" height="17" style="height: 12.75pt; border-top: none;"&gt;Chis-Transit Mxr 6&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;993&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;23/02/2014&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;23/02/2014&lt;/TD&gt;&lt;TD align="right" class="xl26" style="border-top: none; border-left: none;"&gt;131&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 12.75pt;"&gt;&lt;TD class="xl25" height="17" style="height: 12.75pt; border-top: none;"&gt;Chis-Transit Mxr 6&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;993&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;14/05/2014&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;28/05/2014&lt;/TD&gt;&lt;TD align="right" class="xl26" style="border-top: none; border-left: none;"&gt;80&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 12.75pt;"&gt;&lt;TD class="xl25" height="17" style="height: 12.75pt; border-top: none;"&gt;Chis-Transit Mxr 6&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;994&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;20/10/2013&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;25/10/2013&lt;/TD&gt;&lt;TD align="right" class="xl26" style="border-top: none; border-left: none;"&gt;5&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 12.75pt;"&gt;&lt;TD class="xl25" height="17" style="height: 12.75pt; border-top: none;"&gt;Chis-Transit Mxr 6&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;994&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;20/10/2013&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;25/10/2013&lt;/TD&gt;&lt;TD align="right" class="xl26" style="border-top: none; border-left: none;"&gt;22&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 12.75pt;"&gt;&lt;TD class="xl25" height="17" style="height: 12.75pt; border-top: none;"&gt;Chis-Transit Mxr 6&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;994&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;28/10/2013&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;29/10/2013&lt;/TD&gt;&lt;TD align="right" class="xl26" style="border-top: none; border-left: none;"&gt;3&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 12.75pt;"&gt;&lt;TD class="xl25" height="17" style="height: 12.75pt; border-top: none;"&gt;Chis-Transit Mxr 6&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;994&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;27/11/2013&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;28/11/2013&lt;/TD&gt;&lt;TD align="right" class="xl26" style="border-top: none; border-left: none;"&gt;29&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 12.75pt;"&gt;&lt;TD class="xl25" height="17" style="height: 12.75pt; border-top: none;"&gt;Chis-Transit Mxr 6&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;994&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;20/01/2014&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;21/01/2014&lt;/TD&gt;&lt;TD align="right" class="xl26" style="border-top: none; border-left: none;"&gt;53&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 12.75pt;"&gt;&lt;TD class="xl25" height="17" style="height: 12.75pt; border-top: none;"&gt;Chis-Transit Mxr 6&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;995&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;25/11/2013&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;25/11/2013&lt;/TD&gt;&lt;TD align="right" class="xl26" style="border-top: none; border-left: none;"&gt;62&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 12.75pt;"&gt;&lt;TD class="xl25" height="17" style="height: 12.75pt; border-top: none;"&gt;Chis-Transit Mxr 6&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;997&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;01/12/2013&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;02/12/2013&lt;/TD&gt;&lt;TD align="right" class="xl26" style="border-top: none; border-left: none;"&gt;104&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 12.75pt;"&gt;&lt;TD class="xl25" height="17" style="height: 12.75pt; border-top: none;"&gt;Chis-Transit Mxr 6&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;997&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;20/01/2014&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;21/01/2014&lt;/TD&gt;&lt;TD align="right" class="xl26" style="border-top: none; border-left: none;"&gt;49&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 12.75pt;"&gt;&lt;TD class="xl25" height="17" style="height: 12.75pt; border-top: none;"&gt;Chis-Transit Mxr 6&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;997&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;05/03/2014&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;07/03/2014&lt;/TD&gt;&lt;TD align="right" class="xl26" style="border-top: none; border-left: none;"&gt;43&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 12.75pt;"&gt;&lt;TD class="xl25" height="17" style="height: 12.75pt; border-top: none;"&gt;Chis-Transit Mxr 6&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;1018&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;23/10/2013&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;26/10/2013&lt;/TD&gt;&lt;TD align="right" class="xl26" style="border-top: none; border-left: none;"&gt;11&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 12.75pt;"&gt;&lt;TD class="xl25" height="17" style="height: 12.75pt; border-top: none;"&gt;Chis-Transit Mxr 6&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;1018&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;29/11/2013&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;02/12/2013&lt;/TD&gt;&lt;TD align="right" class="xl26" style="border-top: none; border-left: none;"&gt;34&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 12.75pt;"&gt;&lt;TD class="xl25" height="17" style="height: 12.75pt; border-top: none;"&gt;Chis-Transit Mxr 6&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;1385&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;27/10/2013&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;28/10/2013&lt;/TD&gt;&lt;TD align="right" class="xl26" style="border-top: none; border-left: none;"&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 12.75pt;"&gt;&lt;TD class="xl25" height="17" style="height: 12.75pt; border-top: none;"&gt;Chis-Transit Mxr 6&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;1385&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;27/10/2013&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;28/10/2013&lt;/TD&gt;&lt;TD align="right" class="xl26" style="border-top: none; border-left: none;"&gt;866&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 12.75pt;"&gt;&lt;TD class="xl25" height="17" style="height: 12.75pt; border-top: none;"&gt;Chis-Transit Mxr 6&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;1385&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;10/04/2014&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;10/04/2014&lt;/TD&gt;&lt;TD align="right" class="xl26" style="border-top: none; border-left: none;"&gt;164&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 12.75pt;"&gt;&lt;TD class="xl25" height="17" style="height: 12.75pt; border-top: none;"&gt;Chis-Transit Mxr 6&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;7773&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;06/10/2013&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;06/10/2013&lt;/TD&gt;&lt;TD align="right" class="xl26" style="border-top: none; border-left: none;"&gt;12&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 12.75pt;"&gt;&lt;TD class="xl25" height="17" style="height: 12.75pt; border-top: none;"&gt;Chis-Transit Mxr 6&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;7773&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;18/10/2013&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;18/10/2013&lt;/TD&gt;&lt;TD align="right" class="xl26" style="border-top: none; border-left: none;"&gt;12&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 12.75pt;"&gt;&lt;TD class="xl25" height="17" style="height: 12.75pt; border-top: none;"&gt;Chis-Transit Mxr 6&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;7773&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;20/10/2013&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;20/10/2013&lt;/TD&gt;&lt;TD align="right" class="xl26" style="border-top: none; border-left: none;"&gt;2&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 12.75pt;"&gt;&lt;TD class="xl25" height="17" style="height: 12.75pt; border-top: none;"&gt;Chis-Transit Mxr 6&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;7773&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;22/10/2013&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;22/10/2013&lt;/TD&gt;&lt;TD align="right" class="xl26" style="border-top: none; border-left: none;"&gt;2&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 12.75pt;"&gt;&lt;TD class="xl25" height="17" style="height: 12.75pt; border-top: none;"&gt;Chis-Transit Mxr 6&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;7773&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;01/11/2013&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;01/11/2013&lt;/TD&gt;&lt;TD align="right" class="xl26" style="border-top: none; border-left: none;"&gt;10&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 12.75pt;"&gt;&lt;TD class="xl25" height="17" style="height: 12.75pt; border-top: none;"&gt;Chis-Transit Mxr 6&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;7773&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;08/04/2014&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;08/04/2014&lt;/TD&gt;&lt;TD align="right" class="xl26" style="border-top: none; border-left: none;"&gt;158&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 12.75pt;"&gt;&lt;TD class="xl25" height="17" style="height: 12.75pt; border-top: none;"&gt;Chis-Transit Mxr 6&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;9129&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;06/10/2013&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;06/10/2013&lt;/TD&gt;&lt;TD align="right" class="xl26" style="border-top: none; border-left: none;"&gt;499&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 12.75pt;"&gt;&lt;TD class="xl25" height="17" style="height: 12.75pt; border-top: none;"&gt;Chis-Transit Mxr 6&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;9129&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;16/11/2013&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;29/11/2013&lt;/TD&gt;&lt;TD align="right" class="xl26" style="border-top: none; border-left: none;"&gt;67&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 12.75pt;"&gt;&lt;TD class="xl25" height="17" style="height: 12.75pt; border-top: none;"&gt;Chis-Transit Mxr 6&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;9129&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;08/02/2014&lt;/TD&gt;&lt;TD class="xl25" style="border-top: none; border-left: none;"&gt;09/02/2014&lt;/TD&gt;&lt;TD align="right" class="xl26" style="border-top: none; border-left: none;"&gt;71&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height: 12.75pt;"&gt;&lt;TD height="17" style="height: 12.75pt;"&gt;&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Dec 2014 08:06:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-first-selected-value-in-chart-expression/m-p/749619#M267444</guid>
      <dc:creator />
      <dc:date>2014-12-17T08:06:52Z</dc:date>
    </item>
    <item>
      <title>Re: Remove first selected value in chart expression</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-first-selected-value-in-chart-expression/m-p/749620#M267445</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi this will surely help you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Dec 2014 08:35:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-first-selected-value-in-chart-expression/m-p/749620#M267445</guid>
      <dc:creator>saumyashah90</dc:creator>
      <dc:date>2014-12-17T08:35:52Z</dc:date>
    </item>
    <item>
      <title>Re: Remove first selected value in chart expression</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-first-selected-value-in-chart-expression/m-p/749621#M267446</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Saumya&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think we're wrongly interpret the problem. I don't just want first record to remove from just first row of table but for each equipment. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ashif&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Dec 2014 08:50:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-first-selected-value-in-chart-expression/m-p/749621#M267446</guid>
      <dc:creator />
      <dc:date>2014-12-17T08:50:45Z</dc:date>
    </item>
    <item>
      <title>Re: Remove first selected value in chart expression</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-first-selected-value-in-chart-expression/m-p/749622#M267447</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;there is a way to do that also&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Dec 2014 11:11:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-first-selected-value-in-chart-expression/m-p/749622#M267447</guid>
      <dc:creator>saumyashah90</dc:creator>
      <dc:date>2014-12-17T11:11:00Z</dc:date>
    </item>
    <item>
      <title>Re: Remove first selected value in chart expression</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-first-selected-value-in-chart-expression/m-p/749623#M267448</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Dec 2014 11:40:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-first-selected-value-in-chart-expression/m-p/749623#M267448</guid>
      <dc:creator />
      <dc:date>2014-12-17T11:40:52Z</dc:date>
    </item>
    <item>
      <title>Re: Remove first selected value in chart expression</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-first-selected-value-in-chart-expression/m-p/749624#M267449</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Front-end? Try expression like:&lt;/P&gt;&lt;P&gt;If(Above(total Equipment)=Equipment,[MTTF(Days)])&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The similar could be done in script as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: here sort order and aggregation matter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PFA&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Dec 2014 12:06:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-first-selected-value-in-chart-expression/m-p/749624#M267449</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2014-12-17T12:06:14Z</dc:date>
    </item>
    <item>
      <title>Re: Remove first selected value in chart expression</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-first-selected-value-in-chart-expression/m-p/749625#M267450</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ashif,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I managed to get a table working using the following expression&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=Sum(Aggr(If(IsNull(Above(Sum(MTTF))),0,Sum(MTTF)),Equipment, Date))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then ignoring zero values in my chart. Not sure if this is what you are looking for and it will probably need more development but it might help you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Dec 2014 12:24:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-first-selected-value-in-chart-expression/m-p/749625#M267450</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-12-17T12:24:07Z</dc:date>
    </item>
  </channel>
</rss>

