<?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 How to change the value 12.3456 to 12.34 using string function in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-change-the-value-12-3456-to-12-34-using-string-function/m-p/1409466#M801822</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How to change the value 12.3456 to 12.34 using string function&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
    <dc:creator>arjakumar</dc:creator>
    <dc:date>2020-11-25T16:16:04Z</dc:date>
    <item>
      <title>How to change the value 12.3456 to 12.34 using string function</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-change-the-value-12-3456-to-12-34-using-string-function/m-p/1409466#M801822</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How to change the value 12.3456 to 12.34 using string function&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-change-the-value-12-3456-to-12-34-using-string-function/m-p/1409466#M801822</guid>
      <dc:creator>arjakumar</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to change the value 12.3456 to 12.34 using string function</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-change-the-value-12-3456-to-12-34-using-string-function/m-p/1409467#M801823</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;using string fxn? if so just use the left fxn =left(12.3456,5)&lt;/P&gt;&lt;P&gt;better way is the number fxn like below&lt;/P&gt;&lt;P&gt;=Num(12.3456,'##.00')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i.e update your field name instead of the hard coded value&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Nov 2017 04:56:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-change-the-value-12-3456-to-12-34-using-string-function/m-p/1409467#M801823</guid>
      <dc:creator>devarasu07</dc:creator>
      <dc:date>2017-11-17T04:56:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to change the value 12.3456 to 12.34 using string function</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-change-the-value-12-3456-to-12-34-using-string-function/m-p/1409468#M801824</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Num(Value,'##.00')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Nov 2017 04:57:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-change-the-value-12-3456-to-12-34-using-string-function/m-p/1409468#M801824</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-11-17T04:57:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to change the value 12.3456 to 12.34 using string function</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-change-the-value-12-3456-to-12-34-using-string-function/m-p/1409469#M801825</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you want to round the number (ie to 12.35) or round it down (to 12.34)?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Round up:&amp;nbsp; Ceil(12.3456, 0.01)&lt;/P&gt;&lt;P&gt;Round:&amp;nbsp; Round(12.3456, 0.01)&lt;/P&gt;&lt;P&gt;Round down:&amp;nbsp; Floor(12.3456, 0.01)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Nov 2017 04:59:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-change-the-value-12-3456-to-12-34-using-string-function/m-p/1409469#M801825</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2017-11-17T04:59:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to change the value 12.3456 to 12.34 using string function</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-change-the-value-12-3456-to-12-34-using-string-function/m-p/1409470#M801826</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I also want to change 12.3456 to 12.35 when 3rd postion after decimal point is &amp;gt;=5.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Nov 2017 05:09:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-change-the-value-12-3456-to-12-34-using-string-function/m-p/1409470#M801826</guid>
      <dc:creator>arjakumar</dc:creator>
      <dc:date>2017-11-17T05:09:51Z</dc:date>
    </item>
  </channel>
</rss>

