<?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 Use of Round function in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Use-of-Round-function/m-p/487729#M1139916</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anybody explain how does the Round function work?&lt;/P&gt;&lt;P&gt;please see the results i got below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Round(3.88,0) = 1&lt;/P&gt;&lt;P&gt;Round(3.88,1) = 4&lt;/P&gt;&lt;P&gt;Round(3.88,2) = 4&lt;/P&gt;&lt;P&gt;Round(3.88,3) = 3&lt;/P&gt;&lt;P&gt;Round(3.88,4) = 4&lt;/P&gt;&lt;P&gt;Round(3.88,5) = 5&lt;/P&gt;&lt;P&gt;Round(3.88,6) = 6&lt;/P&gt;&lt;P&gt;Round(3.88,7) = 7&lt;/P&gt;&lt;P&gt;Round(3.88,8) = 0&lt;/P&gt;&lt;P&gt;Round(3.88,9) = 0&lt;/P&gt;&lt;P&gt;Round(3.88,10) = 0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you explain this?&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, 05 Sep 2013 13:33:20 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-09-05T13:33:20Z</dc:date>
    <item>
      <title>Use of Round function</title>
      <link>https://community.qlik.com/t5/QlikView/Use-of-Round-function/m-p/487729#M1139916</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anybody explain how does the Round function work?&lt;/P&gt;&lt;P&gt;please see the results i got below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Round(3.88,0) = 1&lt;/P&gt;&lt;P&gt;Round(3.88,1) = 4&lt;/P&gt;&lt;P&gt;Round(3.88,2) = 4&lt;/P&gt;&lt;P&gt;Round(3.88,3) = 3&lt;/P&gt;&lt;P&gt;Round(3.88,4) = 4&lt;/P&gt;&lt;P&gt;Round(3.88,5) = 5&lt;/P&gt;&lt;P&gt;Round(3.88,6) = 6&lt;/P&gt;&lt;P&gt;Round(3.88,7) = 7&lt;/P&gt;&lt;P&gt;Round(3.88,8) = 0&lt;/P&gt;&lt;P&gt;Round(3.88,9) = 0&lt;/P&gt;&lt;P&gt;Round(3.88,10) = 0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you explain this?&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, 05 Sep 2013 13:33:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Use-of-Round-function/m-p/487729#M1139916</guid>
      <dc:creator />
      <dc:date>2013-09-05T13:33:20Z</dc:date>
    </item>
    <item>
      <title>Re: Use of Round function</title>
      <link>https://community.qlik.com/t5/QlikView/Use-of-Round-function/m-p/487730#M1139917</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Round to the closest multiple of your second argument (multiples are all integeres incl. zero), explains all of your results except first (multiple of zero doesn't makes sense, I assume result of 1 is a fixed logic).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Sep 2013 13:41:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Use-of-Round-function/m-p/487730#M1139917</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2013-09-05T13:41:32Z</dc:date>
    </item>
    <item>
      <title>Re: Use of Round function</title>
      <link>https://community.qlik.com/t5/QlikView/Use-of-Round-function/m-p/487731#M1139919</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the QlikView help:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;round (x [ , step [ , offset ]]) &lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Rounding of x upwards or downwards n number of steps with an offset of offset. The result is a number. If x is exactly in the middle of an interval, it is rounded upwards. The function complies with the IEEE standard 64-bit floating point numbers. &lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Examples:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;round( 2.4 ) returns 2&lt;/P&gt;&lt;P&gt;round( 2.6 ) returns 3&lt;/P&gt;&lt;P&gt;round( 2.5 ) returns 3&lt;/P&gt;&lt;P&gt;round( 3.88 , 0.1 ) returns 3.9&lt;/P&gt;&lt;P&gt;round( 3.88 , 5 ) returns 5&lt;/P&gt;&lt;P&gt;round( 1.1 , 1 , 0.5 ) returns 1.5&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Sep 2013 13:56:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Use-of-Round-function/m-p/487731#M1139919</guid>
      <dc:creator>Andrea_Ghirardello</dc:creator>
      <dc:date>2013-09-05T13:56:55Z</dc:date>
    </item>
  </channel>
</rss>

