<?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: Filter Text and Aphanumeric values from a field in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Filter-Text-and-Aphanumeric-values-from-a-field/m-p/1731757#M723228</link>
    <description>&lt;P&gt;You have received two responses to your post, we would greatly appreciate it if you would close out the thread by using the Accept as Solution button on the post(s) that helped.&amp;nbsp; If neither did help, please leave an update post on what you still need.&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt;Brett&lt;/P&gt;</description>
    <pubDate>Wed, 29 Jul 2020 12:56:45 GMT</pubDate>
    <dc:creator>Brett_Bleess</dc:creator>
    <dc:date>2020-07-29T12:56:45Z</dc:date>
    <item>
      <title>Filter Text and Aphanumeric values from a field</title>
      <link>https://community.qlik.com/t5/QlikView/Filter-Text-and-Aphanumeric-values-from-a-field/m-p/1728941#M723225</link>
      <description>&lt;P&gt;Hi, I have a field similar to&lt;/P&gt;&lt;P&gt;Data&lt;/P&gt;&lt;P&gt;------&lt;/P&gt;&lt;P&gt;ABC&lt;/P&gt;&lt;P&gt;ABC (V645)&lt;/P&gt;&lt;P&gt;DHFE&lt;/P&gt;&lt;P&gt;Corporate&lt;/P&gt;&lt;P&gt;AWS (A598234)&lt;/P&gt;&lt;P&gt;Stock&lt;/P&gt;&lt;P&gt;BCC (V10)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How do I separate Text and Alphanumeric values into two different fields in the script?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried IsNum and Istext but they did not work&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 18:20:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filter-Text-and-Aphanumeric-values-from-a-field/m-p/1728941#M723225</guid>
      <dc:creator>qlikwiz123</dc:creator>
      <dc:date>2024-11-16T18:20:45Z</dc:date>
    </item>
    <item>
      <title>Re: Filter Text and Aphanumeric values from a field</title>
      <link>https://community.qlik.com/t5/QlikView/Filter-Text-and-Aphanumeric-values-from-a-field/m-p/1728943#M723226</link>
      <description>&lt;LI-CODE lang="javascript"&gt;Data:
Load *,

if(not isnum(if(len(trim(KeepChar(Field,'0123456789')))&amp;gt;0,KeepChar(Field,'0123456789'))) and 
istext(if(len(trim(KeepChar(Field,'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ')))&amp;gt;0,
KeepChar(Field,'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'))),Field) as Text,

if(isnum(if(len(trim(KeepChar(Field,'0123456789')))&amp;gt;0,KeepChar(Field,'0123456789'))) and 
istext(if(len(trim(KeepChar(Field,'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ')))&amp;gt;0,
KeepChar(Field,'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'))),Field) as AlphaNumeric 
Inline [
Field
ABC
ABC (V645)
DHFE
Corporate
AWS (A598234)
Stock
BCC (V10) ];&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 17 Jul 2020 22:10:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filter-Text-and-Aphanumeric-values-from-a-field/m-p/1728943#M723226</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2020-07-17T22:10:04Z</dc:date>
    </item>
    <item>
      <title>Re: Filter Text and Aphanumeric values from a field</title>
      <link>https://community.qlik.com/t5/QlikView/Filter-Text-and-Aphanumeric-values-from-a-field/m-p/1728971#M723227</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Data:
Load *,
	if(len(TextBetween(Data,'(',')'))&amp;gt;0,Data,null()) as  AN,
	if(len(TextBetween(Data,'(',')'))=0,Data,null()) as  Text;
Load *
Inline [
Data
ABC
ABC (V645)
DHFE
Corporate
AWS (A598234)
Stock
BCC (V10) ];&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 18 Jul 2020 08:32:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filter-Text-and-Aphanumeric-values-from-a-field/m-p/1728971#M723227</guid>
      <dc:creator>Frank_Hartmann</dc:creator>
      <dc:date>2020-07-18T08:32:35Z</dc:date>
    </item>
    <item>
      <title>Re: Filter Text and Aphanumeric values from a field</title>
      <link>https://community.qlik.com/t5/QlikView/Filter-Text-and-Aphanumeric-values-from-a-field/m-p/1731757#M723228</link>
      <description>&lt;P&gt;You have received two responses to your post, we would greatly appreciate it if you would close out the thread by using the Accept as Solution button on the post(s) that helped.&amp;nbsp; If neither did help, please leave an update post on what you still need.&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt;Brett&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jul 2020 12:56:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Filter-Text-and-Aphanumeric-values-from-a-field/m-p/1731757#M723228</guid>
      <dc:creator>Brett_Bleess</dc:creator>
      <dc:date>2020-07-29T12:56:45Z</dc:date>
    </item>
  </channel>
</rss>

