<?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: How to remove space and bracket in numbers? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-remove-space-and-bracket-in-numbers/m-p/825395#M1044618</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Or better still, the keepchar function:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;KeepChar(Number, '0123456789')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also add in other characters, such as period and comma, if you want to keep those also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steve&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 26 Nov 2014 17:23:33 GMT</pubDate>
    <dc:creator>stevedark</dc:creator>
    <dc:date>2014-11-26T17:23:33Z</dc:date>
    <item>
      <title>How to remove space and bracket in numbers?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-remove-space-and-bracket-in-numbers/m-p/825393#M1044616</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have phone number as below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;00353 (0) 87 1706453&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can remove leading zeroes by using below function.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Replace(Replace(Ltrim(replace(replace(replace(Number,' ','_'),0,' '),'+',' ')),' ',0),'_',' ') as Number_1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can anyone help me how to remove spaces and brackets&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how to replace 4765 in place of 0 which is in first place for below number&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;0504634545&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, 26 Nov 2014 17:15:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-remove-space-and-bracket-in-numbers/m-p/825393#M1044616</guid>
      <dc:creator />
      <dc:date>2014-11-26T17:15:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove space and bracket in numbers?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-remove-space-and-bracket-in-numbers/m-p/825394#M1044617</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have a look at the&lt;EM&gt; PurgeChar() f&lt;/EM&gt;unction.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Nov 2014 17:17:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-remove-space-and-bracket-in-numbers/m-p/825394#M1044617</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-11-26T17:17:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove space and bracket in numbers?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-remove-space-and-bracket-in-numbers/m-p/825395#M1044618</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Or better still, the keepchar function:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;KeepChar(Number, '0123456789')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also add in other characters, such as period and comma, if you want to keep those also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steve&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Nov 2014 17:23:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-remove-space-and-bracket-in-numbers/m-p/825395#M1044618</guid>
      <dc:creator>stevedark</dc:creator>
      <dc:date>2014-11-26T17:23:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove space and bracket in numbers?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-remove-space-and-bracket-in-numbers/m-p/825396#M1044619</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Num(Trim(PurgeChar([Field1],'-+()')))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;will turn&lt;/P&gt;&lt;P&gt;00353 (0) 87 1706453&lt;/P&gt;&lt;P&gt;into&lt;/P&gt;&lt;P&gt;3530871706453&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;which is a believe what you are ultimately after?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope that helps&lt;/P&gt;&lt;P&gt;Joe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Nov 2014 17:29:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-remove-space-and-bracket-in-numbers/m-p/825396#M1044619</guid>
      <dc:creator />
      <dc:date>2014-11-26T17:29:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove space and bracket in numbers?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-remove-space-and-bracket-in-numbers/m-p/825397#M1044621</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Use which ever works&amp;nbsp; for you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=Mid(KeepChar(Number, '0123456789'),3)&amp;nbsp; or&amp;nbsp; if you are getting 00 at the begining use and if condition&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=If(Mid(KeepChar(Number, '0123456789'),1,2)='00',Mid(KeepChar(Number, '0123456789'),3),KeepChar(Number, '0123456789'))&amp;nbsp; AS&amp;nbsp; &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Number_1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Nov 2014 17:30:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-remove-space-and-bracket-in-numbers/m-p/825397#M1044621</guid>
      <dc:creator>shree909</dc:creator>
      <dc:date>2014-11-26T17:30:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove space and bracket in numbers?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-remove-space-and-bracket-in-numbers/m-p/825398#M1044623</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Amelia&lt;/P&gt;&lt;P&gt;Please use below formual, it will fulfill you requirement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;STRONG&gt;num(Mid(KeepChar(Number, '0123456789'),3))&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;please check below image&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;STRONG&gt;&lt;IMG alt="test.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/72215_test.png" style="width: 620px; height: 296px;" /&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Nov 2014 17:48:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-remove-space-and-bracket-in-numbers/m-p/825398#M1044623</guid>
      <dc:creator>kushalthakral</dc:creator>
      <dc:date>2014-11-26T17:48:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove space and bracket in numbers?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-remove-space-and-bracket-in-numbers/m-p/825399#M1044625</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="background-color: rgba(255, 255, 255, 0);"&gt;Num(KeepChar(Number, '0123456789'))&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Nov 2014 21:33:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-remove-space-and-bracket-in-numbers/m-p/825399#M1044625</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2014-11-26T21:33:37Z</dc:date>
    </item>
    <item>
      <title>Re: Re: How to remove space and bracket in numbers?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-remove-space-and-bracket-in-numbers/m-p/825400#M1044627</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;='4765'&amp;amp;Replace(LTrim(Replace(KeepChar('00353 (0) 87 1706453', '0123456789'),'0',' ')),' ','0')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="QlikCommunity_Thread_143709_Pic1.JPG.jpg" class="jive-image" src="https://community.qlik.com/legacyfs/online/72233_QlikCommunity_Thread_143709_Pic1.JPG.jpg" style="width: 620px; height: 284px;" /&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;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>Wed, 26 Nov 2014 23:44:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-remove-space-and-bracket-in-numbers/m-p/825400#M1044627</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2014-11-26T23:44:14Z</dc:date>
    </item>
    <item>
      <title>Re: Re: How to remove space and bracket in numbers?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-remove-space-and-bracket-in-numbers/m-p/825401#M1044629</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;The "Num(KeepChar(Number, '0123456789'))" approach I posted before does not work for numbers as long as your example because it can't be intertreted as an integer (to long).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;hope this helps&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;regards&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Marco&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Nov 2014 23:46:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-remove-space-and-bracket-in-numbers/m-p/825401#M1044629</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2014-11-26T23:46:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove space and bracket in numbers?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-remove-space-and-bracket-in-numbers/m-p/825402#M1044631</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Amelia&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I suggest may be try this&lt;/P&gt;&lt;P&gt;=4765 &amp;amp; Mid(KeepChar('00353 (0) 87 1706453','0123456789'),3)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gabriel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Nov 2014 23:59:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-remove-space-and-bracket-in-numbers/m-p/825402#M1044631</guid>
      <dc:creator>Gabriel</dc:creator>
      <dc:date>2014-11-26T23:59:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove space and bracket in numbers?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-remove-space-and-bracket-in-numbers/m-p/825403#M1044633</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to use column name in same formula to replace all column values? please suggest me&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Nov 2014 10:04:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-remove-space-and-bracket-in-numbers/m-p/825403#M1044633</guid>
      <dc:creator />
      <dc:date>2014-11-27T10:04:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove space and bracket in numbers?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-remove-space-and-bracket-in-numbers/m-p/825404#M1044635</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;='4765'&amp;amp;Replace(LTrim(Replace(KeepChar(FieldName, '0123456789'),'0',' ')),' ','0')&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Nov 2014 10:13:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-remove-space-and-bracket-in-numbers/m-p/825404#M1044635</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2014-11-27T10:13:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove space and bracket in numbers?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-remove-space-and-bracket-in-numbers/m-p/825405#M1044637</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks very much.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;there are some n/a, N/A , none values in column data. when I applied the formula it is showing 4765 in place of n/a, N/A , none. How to set this so that in place of&lt;STRONG&gt; n/a, N/A , none&lt;/STRONG&gt; how to show blanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" style="border: 1px solid rgb(0, 0, 0); width: 100%;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;input&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;output&lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;n/a&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;4765&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;N/A&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;4765&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;none&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;4765&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;none&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;4765&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please suggest.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Nov 2014 10:23:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-remove-space-and-bracket-in-numbers/m-p/825405#M1044637</guid>
      <dc:creator />
      <dc:date>2014-11-27T10:23:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove space and bracket in numbers?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-remove-space-and-bracket-in-numbers/m-p/825406#M1044639</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Take the expression you have and place it in an IF statement, checking N as the first character:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f6f6f6;"&gt;=if(lower(left(input, 1) = 'n', '', '4765'&amp;amp;Replace(LTrim(Replace(KeepChar(input, '0123456789'),'0',' ')),' ','0'))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f6f6f6;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f6f6f6;"&gt;Steve&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Nov 2014 20:09:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-remove-space-and-bracket-in-numbers/m-p/825406#M1044639</guid>
      <dc:creator>stevedark</dc:creator>
      <dc:date>2014-11-27T20:09:35Z</dc:date>
    </item>
    <item>
      <title>Re: Re: How to remove space and bracket in numbers?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-remove-space-and-bracket-in-numbers/m-p/825407#M1044641</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;one solution could be:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="QlikCommunity_Thread_143709_Pic2.JPG.jpg" class="jive-image" src="https://community.qlik.com/legacyfs/online/72327_QlikCommunity_Thread_143709_Pic2.JPG.jpg" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_14171243216387866" jivemacro_uid="_14171243216387866"&gt;
&lt;P&gt;tabPhoneNo:&lt;/P&gt;
&lt;P&gt;LOAD If(not WildMatch(phoneNo, 'n/a','none'),Text('4765'&amp;amp;Replace(LTrim(Replace(KeepChar(phoneNo, '0123456789'),'0',' ')),' ','0'))) as phoneNo,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RecNo() as ID &lt;/P&gt;
&lt;P&gt;INLINE [&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; phoneNo&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; NONE&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 00353 (0) 87 1706453&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; None&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 003530871706452&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; n/a&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ++353 (0) 87 1706451&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; N/A&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; +353 (0) 87 1706450&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 087-1706450&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; none&lt;/P&gt;
&lt;P&gt;];&lt;/P&gt;
&lt;/PRE&gt;&lt;P&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;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>Thu, 27 Nov 2014 21:39:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-remove-space-and-bracket-in-numbers/m-p/825407#M1044641</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2014-11-27T21:39:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove space and bracket in numbers?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-remove-space-and-bracket-in-numbers/m-p/825408#M1044642</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;is this issue solved?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If not here it goes my suggestion:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To remove spaces&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Replace('&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;00353 (0) 87 1706453&lt;/SPAN&gt;',' ','')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To replace 0 to &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;4765&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;replace('0504634545','0','4765')&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Please mark the correct answer to close this issue.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;HTH&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;André Gomes&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Aug 2016 11:05:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-remove-space-and-bracket-in-numbers/m-p/825408#M1044642</guid>
      <dc:creator>agomes1971</dc:creator>
      <dc:date>2016-08-26T11:05:31Z</dc:date>
    </item>
  </channel>
</rss>

