<?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 Third last numeric character in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Third-last-numeric-character/m-p/71082#M608709</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, I need to identify a specific number that matches to certain criteria. This criteria is that is must be 10 digits long and the third last number must be a three (3). &lt;/P&gt;&lt;P&gt;e.g.&lt;/P&gt;&lt;P&gt;123456789&lt;/P&gt;&lt;P&gt;1541162347&lt;/P&gt;&lt;P&gt;98765327&lt;/P&gt;&lt;P&gt;The second one should be a match and will return 'YES' in a new field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone assist?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 08 Feb 2018 07:49:18 GMT</pubDate>
    <dc:creator>tarynnagel</dc:creator>
    <dc:date>2018-02-08T07:49:18Z</dc:date>
    <item>
      <title>Third last numeric character</title>
      <link>https://community.qlik.com/t5/QlikView/Third-last-numeric-character/m-p/71082#M608709</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, I need to identify a specific number that matches to certain criteria. This criteria is that is must be 10 digits long and the third last number must be a three (3). &lt;/P&gt;&lt;P&gt;e.g.&lt;/P&gt;&lt;P&gt;123456789&lt;/P&gt;&lt;P&gt;1541162347&lt;/P&gt;&lt;P&gt;98765327&lt;/P&gt;&lt;P&gt;The second one should be a match and will return 'YES' in a new field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone assist?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Feb 2018 07:49:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Third-last-numeric-character/m-p/71082#M608709</guid>
      <dc:creator>tarynnagel</dc:creator>
      <dc:date>2018-02-08T07:49:18Z</dc:date>
    </item>
    <item>
      <title>Re: Third last numeric character</title>
      <link>https://community.qlik.com/t5/QlikView/Third-last-numeric-character/m-p/71083#M608710</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;maybe this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(len(FIELD) = 10 And Isnumeric(FIELD) AND mid(FIELD,8,1)=3, 'YES', 'NO') as NEW_FIELD&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Feb 2018 07:53:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Third-last-numeric-character/m-p/71083#M608710</guid>
      <dc:creator>zhadrakas</dc:creator>
      <dc:date>2018-02-08T07:53:17Z</dc:date>
    </item>
    <item>
      <title>Re: Third last numeric character</title>
      <link>https://community.qlik.com/t5/QlikView/Third-last-numeric-character/m-p/71084#M608711</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if(len(your_field) = 10 and mid(right(your_field,3),1) = '3' and isNumeric(your_field),1,0)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Feb 2018 07:53:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Third-last-numeric-character/m-p/71084#M608711</guid>
      <dc:creator>ali_hijazi</dc:creator>
      <dc:date>2018-02-08T07:53:31Z</dc:date>
    </item>
    <item>
      <title>Re: Third last numeric character</title>
      <link>https://community.qlik.com/t5/QlikView/Third-last-numeric-character/m-p/71085#M608712</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;number like '???????3??'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Feb 2018 22:22:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Third-last-numeric-character/m-p/71085#M608712</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2018-02-08T22:22:01Z</dc:date>
    </item>
    <item>
      <title>Re: Third last numeric character</title>
      <link>https://community.qlik.com/t5/QlikView/Third-last-numeric-character/m-p/71086#M608713</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;one example:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="QlikCommunity_Thread_290685_Pic1.JPG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/192911_QlikCommunity_Thread_290685_Pic1.JPG" style="height: auto; width: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_1518128734010591" jivemacro_uid="_1518128734010591"&gt;
&lt;P&gt;table1:&lt;/P&gt;
&lt;P&gt;LOAD *,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(number like '???????3??','Yes','No') as Flag&lt;/P&gt;
&lt;P&gt;INLINE [&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; number&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 123456789&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1541162347&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 98765327&lt;/P&gt;
&lt;P&gt;];&lt;/P&gt;
&lt;/PRE&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, 08 Feb 2018 22:26:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Third-last-numeric-character/m-p/71086#M608713</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2018-02-08T22:26:06Z</dc:date>
    </item>
  </channel>
</rss>

