<?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: Truncate decimals for display only - sum real numbers top row in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Truncate-decimals-for-display-only-sum-real-numbers-top-row/m-p/643919#M235944</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, I just needed to change the totals settings to use the expression, instead of adding the row values.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 22 May 2014 20:32:06 GMT</pubDate>
    <dc:creator>tschullo</dc:creator>
    <dc:date>2014-05-22T20:32:06Z</dc:date>
    <item>
      <title>Truncate decimals for display only - sum real numbers top row</title>
      <link>https://community.qlik.com/t5/QlikView/Truncate-decimals-for-display-only-sum-real-numbers-top-row/m-p/643915#M235940</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a chart with sales people and number of units moved.&lt;/P&gt;&lt;P&gt;The business is asking that where two sales people collaborated on sales, the chart show the split in the numbers next to their name.&lt;/P&gt;&lt;P&gt;So for example if Bob and Ted sold 100 units, the chart would look like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;100&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Bob&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 50&lt;/P&gt;&lt;P&gt;Ted&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 50&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The issue is that when the total units is 101, they would like to see, essentially:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;101&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Bob&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 50&lt;/P&gt;&lt;P&gt;Ted&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 50&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I force the format to truncate decimals without changing the actual value behind the scenes?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 May 2014 19:19:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Truncate-decimals-for-display-only-sum-real-numbers-top-row/m-p/643915#M235940</guid>
      <dc:creator>tschullo</dc:creator>
      <dc:date>2014-05-22T19:19:44Z</dc:date>
    </item>
    <item>
      <title>Re: Truncate decimals for display only - sum real numbers top row</title>
      <link>https://community.qlik.com/t5/QlikView/Truncate-decimals-for-display-only-sum-real-numbers-top-row/m-p/643916#M235941</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try replace you expression, whatever it is, with&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;floor&lt;/STRONG&gt;(your expression)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 May 2014 20:17:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Truncate-decimals-for-display-only-sum-real-numbers-top-row/m-p/643916#M235941</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-05-22T20:17:32Z</dc:date>
    </item>
    <item>
      <title>Re: Truncate decimals for display only - sum real numbers top row</title>
      <link>https://community.qlik.com/t5/QlikView/Truncate-decimals-for-display-only-sum-real-numbers-top-row/m-p/643917#M235942</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I did that, I think the missing piece was to have the totals be by expression rather than sum rows. That way the total was still 101 instead of 100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 May 2014 20:22:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Truncate-decimals-for-display-only-sum-real-numbers-top-row/m-p/643917#M235942</guid>
      <dc:creator>tschullo</dc:creator>
      <dc:date>2014-05-22T20:22:00Z</dc:date>
    </item>
    <item>
      <title>Re: Truncate decimals for display only - sum real numbers top row</title>
      <link>https://community.qlik.com/t5/QlikView/Truncate-decimals-for-display-only-sum-real-numbers-top-row/m-p/643918#M235943</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I thought this is what you wanted(?)&lt;/P&gt;&lt;P&gt;Bob - 50.5.&amp;nbsp; so, floor(50.5) = 50&lt;/P&gt;&lt;P&gt;Same for Ted.&lt;/P&gt;&lt;P&gt;Total floor(101) = 101.&lt;/P&gt;&lt;P&gt;If you total to be 100 in this case, probably this&lt;/P&gt;&lt;P&gt;sum(aggr(floor(...),Name))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 May 2014 20:29:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Truncate-decimals-for-display-only-sum-real-numbers-top-row/m-p/643918#M235943</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-05-22T20:29:42Z</dc:date>
    </item>
    <item>
      <title>Re: Truncate decimals for display only - sum real numbers top row</title>
      <link>https://community.qlik.com/t5/QlikView/Truncate-decimals-for-display-only-sum-real-numbers-top-row/m-p/643919#M235944</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, I just needed to change the totals settings to use the expression, instead of adding the row values.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 May 2014 20:32:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Truncate-decimals-for-display-only-sum-real-numbers-top-row/m-p/643919#M235944</guid>
      <dc:creator>tschullo</dc:creator>
      <dc:date>2014-05-22T20:32:06Z</dc:date>
    </item>
  </channel>
</rss>

