<?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 identify String or Text and eleminate the zeros at the beginning in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/identify-String-or-Text-and-eleminate-the-zeros-at-the-beginning/m-p/1379032#M31276</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Guys, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a dimension "Material Number", where the numbers can be &lt;/P&gt;&lt;P&gt;000002525451012,&lt;/P&gt;&lt;P&gt;0000000695748,&lt;/P&gt;&lt;P&gt;P IND XXX,&lt;/P&gt;&lt;P&gt;B7TRCXX&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As result I shall get:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;2525451012,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;695748,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;P IND XXX,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;B7TRCXX&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if only contains figures and there are zeros at the beginning then the zeros at the beginning have to eliminated. If it contains Letters, the material number shall remain so. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How shall I write in the script?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 24 Aug 2017 12:38:09 GMT</pubDate>
    <dc:creator>ahidu1030</dc:creator>
    <dc:date>2017-08-24T12:38:09Z</dc:date>
    <item>
      <title>identify String or Text and eleminate the zeros at the beginning</title>
      <link>https://community.qlik.com/t5/App-Development/identify-String-or-Text-and-eleminate-the-zeros-at-the-beginning/m-p/1379032#M31276</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Guys, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a dimension "Material Number", where the numbers can be &lt;/P&gt;&lt;P&gt;000002525451012,&lt;/P&gt;&lt;P&gt;0000000695748,&lt;/P&gt;&lt;P&gt;P IND XXX,&lt;/P&gt;&lt;P&gt;B7TRCXX&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As result I shall get:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;2525451012,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;695748,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;P IND XXX,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;B7TRCXX&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if only contains figures and there are zeros at the beginning then the zeros at the beginning have to eliminated. If it contains Letters, the material number shall remain so. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How shall I write in the script?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Aug 2017 12:38:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/identify-String-or-Text-and-eleminate-the-zeros-at-the-beginning/m-p/1379032#M31276</guid>
      <dc:creator>ahidu1030</dc:creator>
      <dc:date>2017-08-24T12:38:09Z</dc:date>
    </item>
    <item>
      <title>Re: identify String or Text and eleminate the zeros at the beginning</title>
      <link>https://community.qlik.com/t5/App-Development/identify-String-or-Text-and-eleminate-the-zeros-at-the-beginning/m-p/1379033#M31277</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check here:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/thread/272077"&gt;How to Trim Leading Zero's from Numeric value of a Alpha Numeric datatype&lt;/A&gt;‌&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;If(IsNum(Replace(LTrim(Replace(CUSTOMER,'0',' ')),' ','0')), Replace(LTrim(Replace(CUSTOMER,'0',' ')),' ','0'), CUSTOMER) as Customer&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Alt(Num(Replace(LTrim(Replace(CUSTOMER,'0',' ')),' ','0')), CUSTOMER) as Customer&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Aug 2017 15:42:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/identify-String-or-Text-and-eleminate-the-zeros-at-the-beginning/m-p/1379033#M31277</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-08-24T15:42:40Z</dc:date>
    </item>
    <item>
      <title>Re: identify String or Text and eleminate the zeros at the beginning</title>
      <link>https://community.qlik.com/t5/App-Development/identify-String-or-Text-and-eleminate-the-zeros-at-the-beginning/m-p/1379034#M31278</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt;"&gt;Alt&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;(&lt;SPAN style="color: #0000ff;"&gt;Num&lt;/SPAN&gt;(&lt;SPAN style="color: #0000ff;"&gt;Left&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;Field&lt;/SPAN&gt;,14)),&lt;SPAN style="color: #800000;"&gt;Field&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;) &lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Aug 2017 15:52:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/identify-String-or-Text-and-eleminate-the-zeros-at-the-beginning/m-p/1379034#M31278</guid>
      <dc:creator>antoniotiman</dc:creator>
      <dc:date>2017-08-24T15:52:28Z</dc:date>
    </item>
    <item>
      <title>Re: identify String or Text and eleminate the zeros at the beginning</title>
      <link>https://community.qlik.com/t5/App-Development/identify-String-or-Text-and-eleminate-the-zeros-at-the-beginning/m-p/1379035#M31279</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It works perfectly!!!!&lt;/P&gt;&lt;P&gt;Thanks a lot. Exactly the same problem as in the referenced post.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Aug 2017 07:50:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/identify-String-or-Text-and-eleminate-the-zeros-at-the-beginning/m-p/1379035#M31279</guid>
      <dc:creator>ahidu1030</dc:creator>
      <dc:date>2017-08-25T07:50:05Z</dc:date>
    </item>
  </channel>
</rss>

