<?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 Alpha Numeric Filter in Alteryx Designer Desktop Discussions</title>
    <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Alpha-Numeric-Filter/m-p/123153#M36045</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need to filter an alpha numberic word eg: I5.5 or Q45.3 or I765.3 or Q78.99&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How will i filter all these in a single go&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
    <pubDate>Thu, 24 May 2018 04:49:01 GMT</pubDate>
    <dc:creator>Viswadeep</dc:creator>
    <dc:date>2018-05-24T04:49:01Z</dc:date>
    <item>
      <title>Alpha Numeric Filter</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Alpha-Numeric-Filter/m-p/123153#M36045</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need to filter an alpha numberic word eg: I5.5 or Q45.3 or I765.3 or Q78.99&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How will i filter all these in a single go&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Thu, 24 May 2018 04:49:01 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Alpha-Numeric-Filter/m-p/123153#M36045</guid>
      <dc:creator>Viswadeep</dc:creator>
      <dc:date>2018-05-24T04:49:01Z</dc:date>
    </item>
    <item>
      <title>Re: Alpha Numeric Filter</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Alpha-Numeric-Filter/m-p/123162#M36046</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.alteryx.com/t5/user/viewprofilepage/user-id/24245"&gt;@Viswadeep&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want to filter on exact value, you could use a&amp;nbsp;&lt;EM&gt;Filter tool&lt;/EM&gt; with a formula like the following:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;CODE&gt;[valueToCheck] IN ("&lt;SPAN&gt;I5.5","Q45.3","I765.3","Q78.99")&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Where &lt;EM&gt;[valueToCheck]&lt;/EM&gt; is the name of the field you would like to filter on.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Source:&amp;nbsp;&lt;A href="https://help.alteryx.com/11.0/Reference/Functions.htm" target="_self"&gt;https://help.alteryx.com/11.0/Reference/Functions.htm&lt;/A&gt;&amp;nbsp;(section Operators)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Paul Noirel&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Sr Customer Support Engineer&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Feb 2018 14:39:53 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Alpha-Numeric-Filter/m-p/123162#M36046</guid>
      <dc:creator>PaulN</dc:creator>
      <dc:date>2018-02-01T14:39:53Z</dc:date>
    </item>
    <item>
      <title>Re: Alpha Numeric Filter</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Alpha-Numeric-Filter/m-p/123163#M36047</link>
      <description>Regex_match([field],"\u\d+\.\d+") should work for you. &lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;Mark</description>
      <pubDate>Thu, 01 Feb 2018 14:43:23 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Alpha-Numeric-Filter/m-p/123163#M36047</guid>
      <dc:creator>MarqueeCrew</dc:creator>
      <dc:date>2018-02-01T14:43:23Z</dc:date>
    </item>
    <item>
      <title>Re: Alpha Numeric Filter</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Alpha-Numeric-Filter/m-p/123483#M36048</link>
      <description>&lt;P&gt;Thanks mark,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It worked, i need to add on a few things&lt;/P&gt;&lt;P&gt;Data like the below&lt;/P&gt;&lt;P&gt;"-SBI35.2/HLQ34.0" "-SBI35.4/HLQ34.1"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am able to build on from your expression and able to filter out the below data using 'Regex_match([F1],"-?\u+\d+\.\d+")'&lt;/P&gt;&lt;P&gt;"-SQI70.1"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So how do I add on that "/" to filter that out in the same expression&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Fri, 02 Feb 2018 04:48:33 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Alpha-Numeric-Filter/m-p/123483#M36048</guid>
      <dc:creator>Viswadeep</dc:creator>
      <dc:date>2018-02-02T04:48:33Z</dc:date>
    </item>
  </channel>
</rss>

