<?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 data from an ODBC database by string slicing in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Filter-data-from-an-ODBC-database-by-string-slicing/m-p/1976597#M80568</link>
    <description>&lt;P&gt;Hi, in filter try use keyword like&lt;BR /&gt;right(code,2) like 'AP%'.&amp;nbsp; It means that 2first symbols of code start with AP.&amp;nbsp;&lt;BR /&gt;right(code,2) like '%AP%'. It means that 2first symbols of code has AP.&lt;BR /&gt;right(code,2) like 'AP%'. It means that 2first symbols of code&amp;nbsp; end AP.&lt;/P&gt;</description>
    <pubDate>Mon, 05 Sep 2022 04:15:36 GMT</pubDate>
    <dc:creator>Timario</dc:creator>
    <dc:date>2022-09-05T04:15:36Z</dc:date>
    <item>
      <title>Filter data from an ODBC database by string slicing</title>
      <link>https://community.qlik.com/t5/App-Development/Filter-data-from-an-ODBC-database-by-string-slicing/m-p/1976228#M80522</link>
      <description>&lt;P&gt;When loading a table from an ODBC, I would like to filter the dataset based on a column that ends with a certain value.&lt;/P&gt;
&lt;P&gt;I have a column [code] that is made up of various text of different length.&lt;/P&gt;
&lt;P&gt;I am trying to filter all the rows that does not have a [code] ending with AP.&lt;/P&gt;
&lt;P&gt;I tried the following code but it does not work&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Denzyl_0-1662109305053.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/88147i1124656C986103F4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Denzyl_0-1662109305053.png" alt="Denzyl_0-1662109305053.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Sep 2022 09:04:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Filter-data-from-an-ODBC-database-by-string-slicing/m-p/1976228#M80522</guid>
      <dc:creator>Denzyl</dc:creator>
      <dc:date>2022-09-02T09:04:08Z</dc:date>
    </item>
    <item>
      <title>Re: Filter data from an ODBC database by string slicing</title>
      <link>https://community.qlik.com/t5/App-Development/Filter-data-from-an-ODBC-database-by-string-slicing/m-p/1976232#M80524</link>
      <description>&lt;P&gt;use Below&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Wildmatch( FIeldName,'*AP')&lt;/P&gt;
&lt;P&gt;or&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If(WildMatch(FIeldName,'*AP'),FIeldName) as Test.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;See the attached Example where we want to filter&amp;nbsp; Date where we have 22 in END&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Sep 2022 09:19:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Filter-data-from-an-ODBC-database-by-string-slicing/m-p/1976232#M80524</guid>
      <dc:creator>SunilChauhan</dc:creator>
      <dc:date>2022-09-02T09:19:15Z</dc:date>
    </item>
    <item>
      <title>Re: Filter data from an ODBC database by string slicing</title>
      <link>https://community.qlik.com/t5/App-Development/Filter-data-from-an-ODBC-database-by-string-slicing/m-p/1976240#M80526</link>
      <description>&lt;P&gt;Hi, I've tried to use Wildmatch, and it did not work as well.&lt;/P&gt;
&lt;P&gt;Just to be clear I am trying to use the Filter data option in the "Edit Selections" page when loading data from an ODBC connection not trying to write the loading script, using the load editior.&lt;/P&gt;</description>
      <pubDate>Fri, 02 Sep 2022 09:28:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Filter-data-from-an-ODBC-database-by-string-slicing/m-p/1976240#M80526</guid>
      <dc:creator>Denzyl</dc:creator>
      <dc:date>2022-09-02T09:28:06Z</dc:date>
    </item>
    <item>
      <title>Re: Filter data from an ODBC database by string slicing</title>
      <link>https://community.qlik.com/t5/App-Development/Filter-data-from-an-ODBC-database-by-string-slicing/m-p/1976310#M80529</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;In the documentation we have all operator you can use :&amp;nbsp;&lt;A href="https://help.qlik.com/en-US/sense/August2022/Subsystems/Hub/Content/Sense_Hub/LoadData/Filter-data-connectors.htm" target="_blank"&gt;https://help.qlik.com/en-US/sense/August2022/Subsystems/Hub/Content/Sense_Hub/LoadData/Filter-data-connectors.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Perhaps with :&amp;nbsp;&lt;SPAN&gt;code NOT LIKE '%AP'&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Example with my data on snowflake&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="amartinez35_0-1662121703704.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/88156iAE43A567487D5BCD/image-size/medium?v=v2&amp;amp;px=400" role="button" title="amartinez35_0-1662121703704.png" alt="amartinez35_0-1662121703704.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Sep 2022 12:30:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Filter-data-from-an-ODBC-database-by-string-slicing/m-p/1976310#M80529</guid>
      <dc:creator>Aurelien_Martinez</dc:creator>
      <dc:date>2022-09-02T12:30:21Z</dc:date>
    </item>
    <item>
      <title>Re: Filter data from an ODBC database by string slicing</title>
      <link>https://community.qlik.com/t5/App-Development/Filter-data-from-an-ODBC-database-by-string-slicing/m-p/1976597#M80568</link>
      <description>&lt;P&gt;Hi, in filter try use keyword like&lt;BR /&gt;right(code,2) like 'AP%'.&amp;nbsp; It means that 2first symbols of code start with AP.&amp;nbsp;&lt;BR /&gt;right(code,2) like '%AP%'. It means that 2first symbols of code has AP.&lt;BR /&gt;right(code,2) like 'AP%'. It means that 2first symbols of code&amp;nbsp; end AP.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Sep 2022 04:15:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Filter-data-from-an-ODBC-database-by-string-slicing/m-p/1976597#M80568</guid>
      <dc:creator>Timario</dc:creator>
      <dc:date>2022-09-05T04:15:36Z</dc:date>
    </item>
  </channel>
</rss>

