<?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: Help with round function in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Help-with-round-function/m-p/1563713#M742313</link>
    <description>&lt;P&gt;If its just for display purposes, then keep it simple and use Num():&lt;/P&gt;&lt;PRE&gt;Num(0.2461412134614245, '%0.0')&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;If its for other (non-display) purposes where need the rounded values (eg a dimension), then the % sign may be unnecessary and use:&lt;/P&gt;&lt;PRE&gt;Round(0.2461412134614245, 1/1000)   // if its used internally or in script&lt;BR /&gt;or &lt;BR /&gt;Num(Round(0.2461412134614245, 1/1000), '%0.0')   // for a dimension&lt;/PRE&gt;</description>
    <pubDate>Tue, 02 Apr 2019 06:34:31 GMT</pubDate>
    <dc:creator>jonathandienst</dc:creator>
    <dc:date>2019-04-02T06:34:31Z</dc:date>
    <item>
      <title>Help with round function</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-round-function/m-p/1563592#M742308</link>
      <description>&lt;P&gt;Hi Everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need help with round function.&lt;/P&gt;&lt;P&gt;round(0.2461412134614245,.0001)&amp;nbsp; and&amp;nbsp; &amp;nbsp; round(0.2753054367009194,.0001)&lt;/P&gt;&lt;P&gt;How can i get the output for the above number as follows - 24.6% and 27.6% ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-round-function/m-p/1563592#M742308</guid>
      <dc:creator>qlikuser222</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Help with round function</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-round-function/m-p/1563597#M742309</link>
      <description>&lt;P&gt;text box&lt;/P&gt;&lt;P&gt;=round(0.2461412134614245,.001)&amp;nbsp; * 100 &amp;amp; '%'&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Apr 2019 18:39:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-round-function/m-p/1563597#M742309</guid>
      <dc:creator>pradosh_thakur</dc:creator>
      <dc:date>2019-04-01T18:39:16Z</dc:date>
    </item>
    <item>
      <title>Re: Help with round function</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-round-function/m-p/1563602#M742310</link>
      <description>&lt;P&gt;Thnaks,&lt;/P&gt;&lt;P&gt;=round(0.2753054367009194,.001) * 100 &amp;amp; '%'&amp;nbsp; = 27.5%&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but i need 27.6%&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 01 Apr 2019 18:45:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-round-function/m-p/1563602#M742310</guid>
      <dc:creator>qlikuser222</dc:creator>
      <dc:date>2019-04-01T18:45:20Z</dc:date>
    </item>
    <item>
      <title>Re: Help with round function</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-round-function/m-p/1563616#M742311</link>
      <description>What is your threshold/logic for the rounding up?&lt;BR /&gt;27.53 you want as 27.6 and 24.61 you want as 24.6.&lt;BR /&gt;You can use ceil function to force rounding up but it will be becore 27.6 and 24.7 respectively.&lt;BR /&gt;</description>
      <pubDate>Mon, 01 Apr 2019 19:30:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-round-function/m-p/1563616#M742311</guid>
      <dc:creator>dplr-rn</dc:creator>
      <dc:date>2019-04-01T19:30:15Z</dc:date>
    </item>
    <item>
      <title>Re: Help with round function</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-round-function/m-p/1563690#M742312</link>
      <description>&lt;P&gt;1&lt;/P&gt;&lt;P&gt;=num(ceil(num(num(.2461412134614245)*100),0.01),'#.##0,0')&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2&lt;/P&gt;&lt;P&gt;=ceil(num(num(0.2753054367009194)*100),0000.1)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Apr 2019 03:25:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-round-function/m-p/1563690#M742312</guid>
      <dc:creator>danilostochi</dc:creator>
      <dc:date>2019-04-02T03:25:23Z</dc:date>
    </item>
    <item>
      <title>Re: Help with round function</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-round-function/m-p/1563713#M742313</link>
      <description>&lt;P&gt;If its just for display purposes, then keep it simple and use Num():&lt;/P&gt;&lt;PRE&gt;Num(0.2461412134614245, '%0.0')&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;If its for other (non-display) purposes where need the rounded values (eg a dimension), then the % sign may be unnecessary and use:&lt;/P&gt;&lt;PRE&gt;Round(0.2461412134614245, 1/1000)   // if its used internally or in script&lt;BR /&gt;or &lt;BR /&gt;Num(Round(0.2461412134614245, 1/1000), '%0.0')   // for a dimension&lt;/PRE&gt;</description>
      <pubDate>Tue, 02 Apr 2019 06:34:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-round-function/m-p/1563713#M742313</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2019-04-02T06:34:31Z</dc:date>
    </item>
    <item>
      <title>Re: Help with round function</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-round-function/m-p/1580629#M742314</link>
      <description>&lt;P&gt;Some of the guys above have already hit on things, but I am going to through out a Design Blog post for you as well, that might help things make a bit more sense.&amp;nbsp; The only way I see to get what you want is to change your offset value from .0001 to .001, that should do the trick as well, but as things are, they are working as expected from what I can see.&amp;nbsp; Using the step option could work, but I am betting you do not want to go up or down a whole integer either.&amp;nbsp; Thanks to the other guys above comments as well, they are all good, just hoping this one may fill in the gaps a bit for you.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Design-Blog/Rounding-Errors/ba-p/1468808" target="_blank"&gt;https://community.qlik.com/t5/Qlik-Design-Blog/Rounding-Errors/ba-p/1468808&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt;Brett&lt;/P&gt;</description>
      <pubDate>Wed, 15 May 2019 17:50:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-round-function/m-p/1580629#M742314</guid>
      <dc:creator>Brett_Bleess</dc:creator>
      <dc:date>2019-05-15T17:50:54Z</dc:date>
    </item>
  </channel>
</rss>

