<?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: Calculate difference between two rows of list box in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Calculate-difference-between-two-rows-of-list-box/m-p/1656962#M448391</link>
    <description>&lt;P&gt;Hi Sujit,&lt;/P&gt;&lt;P&gt;Could you please provide some examples.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 12 Dec 2019 10:04:04 GMT</pubDate>
    <dc:creator>gayathridevi24</dc:creator>
    <dc:date>2019-12-12T10:04:04Z</dc:date>
    <item>
      <title>Calculate difference between two rows of list box</title>
      <link>https://community.qlik.com/t5/QlikView/Calculate-difference-between-two-rows-of-list-box/m-p/1656447#M448339</link>
      <description>&lt;P&gt;I have a column containing 2 values which I am using as a dimension in my pivot table chart.&lt;/P&gt;&lt;P&gt;The chart has one expression. Now I want a third row to be added into that column that will be the difference of second -first row upon calculation.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;STRONG&gt;Column1&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;feild1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;feild2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;STRONG&gt;&lt;FONT color="#000000"&gt;feild2-feild1 (Currently I do not have this feild. I want to add this feild so data will be populated id I use this column1 as dimension)&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Sat, 16 Nov 2024 01:43:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculate-difference-between-two-rows-of-list-box/m-p/1656447#M448339</guid>
      <dc:creator>sujit_nath</dc:creator>
      <dc:date>2024-11-16T01:43:30Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate difference between two rows of list box</title>
      <link>https://community.qlik.com/t5/QlikView/Calculate-difference-between-two-rows-of-list-box/m-p/1656962#M448391</link>
      <description>&lt;P&gt;Hi Sujit,&lt;/P&gt;&lt;P&gt;Could you please provide some examples.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Dec 2019 10:04:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculate-difference-between-two-rows-of-list-box/m-p/1656962#M448391</guid>
      <dc:creator>gayathridevi24</dc:creator>
      <dc:date>2019-12-12T10:04:04Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate difference between two rows of list box</title>
      <link>https://community.qlik.com/t5/QlikView/Calculate-difference-between-two-rows-of-list-box/m-p/1657089#M448409</link>
      <description>&lt;P&gt;Try checking the ValueList/ValueLoop concept.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Dec 2019 13:42:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculate-difference-between-two-rows-of-list-box/m-p/1657089#M448409</guid>
      <dc:creator>Jesh19</dc:creator>
      <dc:date>2019-12-12T13:42:45Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate difference between two rows of list box</title>
      <link>https://community.qlik.com/t5/QlikView/Calculate-difference-between-two-rows-of-list-box/m-p/1657114#M448413</link>
      <description>&lt;P&gt;Create one inline table in script as below&lt;/P&gt;&lt;P&gt;Load * Inline [&lt;BR /&gt;Dim&lt;BR /&gt;1&lt;BR /&gt;2 ];&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;then in chart add below dimension and measure&lt;/P&gt;&lt;P&gt;Dimension:&lt;/P&gt;&lt;P&gt;=pick(Dim,Column,'Field3')&lt;/P&gt;&lt;P&gt;Measure:&lt;/P&gt;&lt;P&gt;=pick(Dim,sum(Sales),sum({&amp;lt;Column={'Field2'}&amp;gt;}Sales)-sum({&amp;lt;Column={'Field1'}&amp;gt;}Sales))&lt;/P&gt;</description>
      <pubDate>Thu, 12 Dec 2019 14:18:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculate-difference-between-two-rows-of-list-box/m-p/1657114#M448413</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2019-12-12T14:18:45Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate difference between two rows of list box</title>
      <link>https://community.qlik.com/t5/QlikView/Calculate-difference-between-two-rows-of-list-box/m-p/1657383#M448438</link>
      <description>&lt;P&gt;Hi Kush,&lt;/P&gt;&lt;P&gt;Thanks for the solution, I tried with Valuelist though, and this gives me my desired result.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Dec 2019 04:45:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculate-difference-between-two-rows-of-list-box/m-p/1657383#M448438</guid>
      <dc:creator>sujit_nath</dc:creator>
      <dc:date>2019-12-13T04:45:53Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate difference between two rows of list box</title>
      <link>https://community.qlik.com/t5/QlikView/Calculate-difference-between-two-rows-of-list-box/m-p/1657384#M448439</link>
      <description>&lt;P&gt;i Jesh,&lt;/P&gt;&lt;P&gt;I achieved the solution through this. thanks alot!!&lt;/P&gt;</description>
      <pubDate>Fri, 13 Dec 2019 04:46:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculate-difference-between-two-rows-of-list-box/m-p/1657384#M448439</guid>
      <dc:creator>sujit_nath</dc:creator>
      <dc:date>2019-12-13T04:46:49Z</dc:date>
    </item>
  </channel>
</rss>

