<?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: Separate Number and Text in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Separate-Number-and-Text/m-p/74024#M789028</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you everyone for the assistance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 09 Feb 2018 13:13:55 GMT</pubDate>
    <dc:creator>zwyne</dc:creator>
    <dc:date>2018-02-09T13:13:55Z</dc:date>
    <item>
      <title>Separate Number and Text</title>
      <link>https://community.qlik.com/t5/QlikView/Separate-Number-and-Text/m-p/74019#M789023</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Experts,&lt;/P&gt;&lt;P&gt;PFA&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In attached file I have column called &lt;STRONG&gt;Value Local Currency &lt;/STRONG&gt;which is a mixed column. So I am trying to separate value and text but I am getting wrong results. I have used the following statement as below:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;KeepChar&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Value Local Currency]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,'0123456789') &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;AS&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;number&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;PurgeChar&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Value Local Currency]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,'0123456789') &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;AS&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;text&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Please assist.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Thanks&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&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/Separate-Number-and-Text/m-p/74019#M789023</guid>
      <dc:creator>zwyne</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Separate Number and Text</title>
      <link>https://community.qlik.com/t5/QlikView/Separate-Number-and-Text/m-p/74020#M789024</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bafana, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try SUBFIELD([Value Local Currency],' ZAR',1) AS Value&lt;/P&gt;&lt;P&gt;That will retrevie the part before " ZAR", which is the value. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Feb 2018 14:21:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Separate-Number-and-Text/m-p/74020#M789024</guid>
      <dc:creator>avkeep01</dc:creator>
      <dc:date>2018-02-08T14:21:59Z</dc:date>
    </item>
    <item>
      <title>Re: Separate Number and Text</title>
      <link>https://community.qlik.com/t5/QlikView/Separate-Number-and-Text/m-p/74021#M789025</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try these:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;right(&lt;SPAN style="color: #800000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10.6667px;"&gt;[Value Local Currency]&lt;/SPAN&gt;,len(&lt;SPAN style="color: #800000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10.6667px;"&gt;[Value Local Currency]&lt;/SPAN&gt;) - index(&lt;SPAN style="color: #800000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10.6667px;"&gt;[Value Local Currency]&lt;/SPAN&gt;, ' ')) as Currency&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;and&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;num(left(&lt;SPAN style="color: #800000; font-size: 10.6667px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;STRONG&gt;[Value Local Currency]&lt;/STRONG&gt;&lt;/SPAN&gt;,index(&lt;SPAN style="color: #800000; font-size: 10.6667px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;STRONG&gt;[Value Local Currency]&lt;/STRONG&gt;&lt;/SPAN&gt;, ' '))) as [Expected Value]&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Feb 2018 14:26:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Separate-Number-and-Text/m-p/74021#M789025</guid>
      <dc:creator>tunoi</dc:creator>
      <dc:date>2018-02-08T14:26:54Z</dc:date>
    </item>
    <item>
      <title>Re: Separate Number and Text</title>
      <link>https://community.qlik.com/t5/QlikView/Separate-Number-and-Text/m-p/74022#M789026</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bafana,&lt;/P&gt;&lt;P&gt;Check this out.&lt;/P&gt;&lt;P&gt;Let me know if you find it helpful.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Feb 2018 14:44:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Separate-Number-and-Text/m-p/74022#M789026</guid>
      <dc:creator>neelamsaroha157</dc:creator>
      <dc:date>2018-02-08T14:44:39Z</dc:date>
    </item>
    <item>
      <title>Re: Separate Number and Text</title>
      <link>https://community.qlik.com/t5/QlikView/Separate-Number-and-Text/m-p/74023#M789027</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Simply You can&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;[Value Local Currency]&lt;/SPAN&gt;,' ',1) as Number&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;subfield(&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;[Value Local Currency]&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;,' ',2) as Text&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Feb 2018 14:49:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Separate-Number-and-Text/m-p/74023#M789027</guid>
      <dc:creator>surendraj</dc:creator>
      <dc:date>2018-02-08T14:49:26Z</dc:date>
    </item>
    <item>
      <title>Re: Separate Number and Text</title>
      <link>https://community.qlik.com/t5/QlikView/Separate-Number-and-Text/m-p/74024#M789028</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you everyone for the assistance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Feb 2018 13:13:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Separate-Number-and-Text/m-p/74024#M789028</guid>
      <dc:creator>zwyne</dc:creator>
      <dc:date>2018-02-09T13:13:55Z</dc:date>
    </item>
  </channel>
</rss>

