<?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 Remove zeros from field in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Remove-zeros-from-field/m-p/1229162#M851289</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;How to remove zeros from field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Field values: 002,003,004,005,055,088,099.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know how to remove those zeros from backend.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
    <dc:creator>nareshthavidishetty</dc:creator>
    <dc:date>2020-11-25T16:16:04Z</dc:date>
    <item>
      <title>Remove zeros from field</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-zeros-from-field/m-p/1229162#M851289</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;How to remove zeros from field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Field values: 002,003,004,005,055,088,099.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know how to remove those zeros from backend.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks..&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/Remove-zeros-from-field/m-p/1229162#M851289</guid>
      <dc:creator>nareshthavidishetty</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Remove zeros from field</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-zeros-from-field/m-p/1229163#M851290</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try&lt;/P&gt;&lt;P&gt;=SubField(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Field &lt;/SPAN&gt;, '0' ,-1)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Mar 2017 17:00:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-zeros-from-field/m-p/1229163#M851290</guid>
      <dc:creator>annafuksa1</dc:creator>
      <dc:date>2017-03-03T17:00:11Z</dc:date>
    </item>
    <item>
      <title>Re: Remove zeros from field</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-zeros-from-field/m-p/1229164#M851291</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in a script &lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;num(&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Field&lt;/SPAN&gt;)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Mar 2017 17:03:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-zeros-from-field/m-p/1229164#M851291</guid>
      <dc:creator>annafuksa1</dc:creator>
      <dc:date>2017-03-03T17:03:50Z</dc:date>
    </item>
    <item>
      <title>Re: Remove zeros from field</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-zeros-from-field/m-p/1229165#M851292</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As anna mentioned used num(Feild) if you want to trim the starting 0's&lt;BR /&gt;Just in case if you want to don't have zeros at all use PurgeChar(Feild,'0')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Mar 2017 17:26:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-zeros-from-field/m-p/1229165#M851292</guid>
      <dc:creator />
      <dc:date>2017-03-03T17:26:51Z</dc:date>
    </item>
    <item>
      <title>Re: Remove zeros from field</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-zeros-from-field/m-p/1229166#M851293</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be use, I am assuming you may need 2,3,4,5,55,88,99&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FieldName * 1 as FieldName&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Mar 2017 17:40:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-zeros-from-field/m-p/1229166#M851293</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-03-03T17:40:04Z</dc:date>
    </item>
    <item>
      <title>Re: Remove zeros from field</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-zeros-from-field/m-p/1229167#M851294</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, sorry for my bad english. I'm brazilian....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your load script, try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14885635201392037 jive_text_macro" jivemacro_uid="_14885635201392037"&gt;
&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;PurgeChar&lt;/SPAN&gt;([Your Field], '0') AS [Your Field]&lt;/P&gt;

&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In text box, try this too...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14885635564463321" jivemacro_uid="_14885635564463321"&gt;
&lt;P&gt;=PurgeChar('001230','0')&lt;/P&gt;

&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;its returns '123'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;As you can see, the function works in both script and expressions.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;I hope it can be helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-users/208505"&gt;tiagocardoso&lt;/A&gt;‌&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Mar 2017 17:53:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-zeros-from-field/m-p/1229167#M851294</guid>
      <dc:creator>TiagoCardoso</dc:creator>
      <dc:date>2017-03-03T17:53:44Z</dc:date>
    </item>
    <item>
      <title>Re: Remove zeros from field</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-zeros-from-field/m-p/1229168#M851295</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;SPAN class="font-color-meta" style="padding: 0 0 5px; font-size: 1.2em; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #8b8b8b; background-color: #e6e6e6;"&gt;&lt;SPAN class="replyToName" style="font-weight: inherit; font-style: inherit; font-size: 15.6px; font-family: inherit;"&gt;nareshthavidishetty nareshthavidishetty&lt;/SPAN&gt;&lt;/SPAN&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Utilize the function num(). Example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;num(FieldName)&amp;nbsp; as FieldName&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;From&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;lt;TableName.qvd&amp;gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(qvd);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jonas Melo.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Mar 2017 18:29:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-zeros-from-field/m-p/1229168#M851295</guid>
      <dc:creator>jonas_rezende</dc:creator>
      <dc:date>2017-03-03T18:29:57Z</dc:date>
    </item>
    <item>
      <title>Re: Remove zeros from field</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-zeros-from-field/m-p/1229169#M851296</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;you already received multiple correct answers when posting the same question a few weeks ago:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/thread/249503"&gt;Trim zeros&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please describe the issue you are still having with the implementation.&lt;/P&gt;&lt;P&gt;If your question is answered however, then please close both threads related to this issue as well as your &lt;A _jive_internal="true" href="https://community.qlik.com/people/nareshthavidishetty/content" title="https://community.qlik.com/people/nareshthavidishetty/content"&gt;other threads &lt;/A&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;that received correct answers:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-14806"&gt;Qlik Community Tip: Marking Replies as Correct or Helpful&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Mar 2017 22:42:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-zeros-from-field/m-p/1229169#M851296</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2017-03-04T22:42:15Z</dc:date>
    </item>
    <item>
      <title>Re: Remove zeros from field</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-zeros-from-field/m-p/1229170#M851297</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;Use Num(Field)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Mar 2017 06:08:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-zeros-from-field/m-p/1229170#M851297</guid>
      <dc:creator>muthukumar77</dc:creator>
      <dc:date>2017-03-06T06:08:40Z</dc:date>
    </item>
    <item>
      <title>Re: Remove zeros from field</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-zeros-from-field/m-p/1229171#M851298</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;keepchar(FieldName,'123456789')&amp;nbsp; as New;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Mar 2017 06:30:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-zeros-from-field/m-p/1229171#M851298</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2017-03-06T06:30:14Z</dc:date>
    </item>
  </channel>
</rss>

