<?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: Numbers doubling up in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Numbers-doubling-up/m-p/1625239#M446071</link>
    <description>Thanks, that is the reason ie that i am picking up the year twice. I will try to work out how to fix it&lt;BR /&gt;</description>
    <pubDate>Wed, 18 Sep 2019 12:40:12 GMT</pubDate>
    <dc:creator>paul_ripley</dc:creator>
    <dc:date>2019-09-18T12:40:12Z</dc:date>
    <item>
      <title>Numbers doubling up</title>
      <link>https://community.qlik.com/t5/QlikView/Numbers-doubling-up/m-p/1625130#M446062</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;I have a simple report that extract data from the database.&lt;/P&gt;&lt;P&gt;I filter on one period, asset and account code and thr amount 1698 is correct in the table box&lt;/P&gt;&lt;P&gt;When use the expression sum(amount) it doubles the value to 3397.&lt;/P&gt;&lt;P&gt;Do you have any idea why this may be?&lt;/P&gt;&lt;P&gt;I attache the qvw&lt;/P&gt;&lt;P&gt;Many thanks&lt;/P&gt;&lt;P&gt;Paul&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 02:27:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Numbers-doubling-up/m-p/1625130#M446062</guid>
      <dc:creator>paul_ripley</dc:creator>
      <dc:date>2024-11-16T02:27:08Z</dc:date>
    </item>
    <item>
      <title>Re: Numbers doubling up</title>
      <link>https://community.qlik.com/t5/QlikView/Numbers-doubling-up/m-p/1625137#M446063</link>
      <description>&lt;P&gt;usually it means you have duplicated records&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Sep 2019 10:20:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Numbers-doubling-up/m-p/1625137#M446063</guid>
      <dc:creator>lironbaram</dc:creator>
      <dc:date>2019-09-18T10:20:41Z</dc:date>
    </item>
    <item>
      <title>Re: Numbers doubling up</title>
      <link>https://community.qlik.com/t5/QlikView/Numbers-doubling-up/m-p/1625147#M446064</link>
      <description>&lt;P&gt;Qlikview table box shows only unique combination of records. So that might not help you get the right picture here. Try 'show frequency' in amount listbox; you would see 2 as frequency for your selected record.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Sep 2019 10:32:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Numbers-doubling-up/m-p/1625147#M446064</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2019-09-18T10:32:39Z</dc:date>
    </item>
    <item>
      <title>Re: Numbers doubling up</title>
      <link>https://community.qlik.com/t5/QlikView/Numbers-doubling-up/m-p/1625202#M446067</link>
      <description>&lt;P&gt;Hi Paul,&lt;/P&gt;&lt;P&gt;The reason why your figures are doubling up is because you have loaded the data in twice, I would suggest reviewing your script to find out what has caused it, or even better clear the report of any data and reload to see how many rows are loaded.&lt;/P&gt;&lt;P&gt;At the moment you can see 148,437 rows, but there are actually 296,872 rows(double). Go to table viewer and hover over the FixedAssets table and you will see the 296,872 number of rows displayed.&lt;/P&gt;&lt;P&gt;I hope this is helpful.&lt;/P&gt;&lt;P&gt;Victor&lt;/P&gt;</description>
      <pubDate>Wed, 18 Sep 2019 11:58:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Numbers-doubling-up/m-p/1625202#M446067</guid>
      <dc:creator>Victor_Alumanah</dc:creator>
      <dc:date>2019-09-18T11:58:06Z</dc:date>
    </item>
    <item>
      <title>Re: Numbers doubling up</title>
      <link>https://community.qlik.com/t5/QlikView/Numbers-doubling-up/m-p/1625203#M446068</link>
      <description>&lt;P&gt;Did you forget to add the condition on Year may be? because without a condition on Year, you might be looping over 2 years pulling the same data twice....&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;  SELECT k.client,
         k.asset_id,
         a.description AS asset_descr,
         a.date_from,
         k.asset_group,
         k.dim_1,
         c.description AS asset_group_desc,
         k.trans_type,
         k.voucher_type,
         k.account_type,
         k.period AS gl_period,
         k.trans_date,
         SUM (k.amount) AS amount,
         SUM (k.value_3) AS value_3,
         k.account
    FROM aatasset a, agldescription c, aattrans k
   WHERE     k.client = a.client
         AND k.asset_id = a.asset_id
         AND a.status = 'N'
         AND k.client = c.client
         AND a.asset_group = c.dim_value
         AND c.attribute_id = 'G10'
         AND year = '$(vYear)'
GROUP BY k.client,
         k.asset_id,
         a.description,
         a.date_from,
         k.asset_group,
         k.dim_1,
         c.description,
         k.trans_type,
         k.voucher_type,
         k.account_type,
         k.period,
         k.trans_date,
         k.account
ORDER BY asset_group_desc, k.asset_id;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Sep 2019 11:58:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Numbers-doubling-up/m-p/1625203#M446068</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2019-09-18T11:58:11Z</dc:date>
    </item>
    <item>
      <title>Re: Numbers doubling up</title>
      <link>https://community.qlik.com/t5/QlikView/Numbers-doubling-up/m-p/1625238#M446070</link>
      <description>&lt;P&gt;Thanks , i think it is something to do with that&lt;/P&gt;</description>
      <pubDate>Wed, 18 Sep 2019 12:39:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Numbers-doubling-up/m-p/1625238#M446070</guid>
      <dc:creator>paul_ripley</dc:creator>
      <dc:date>2019-09-18T12:39:25Z</dc:date>
    </item>
    <item>
      <title>Re: Numbers doubling up</title>
      <link>https://community.qlik.com/t5/QlikView/Numbers-doubling-up/m-p/1625239#M446071</link>
      <description>Thanks, that is the reason ie that i am picking up the year twice. I will try to work out how to fix it&lt;BR /&gt;</description>
      <pubDate>Wed, 18 Sep 2019 12:40:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Numbers-doubling-up/m-p/1625239#M446071</guid>
      <dc:creator>paul_ripley</dc:creator>
      <dc:date>2019-09-18T12:40:12Z</dc:date>
    </item>
  </channel>
</rss>

