<?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: Loading values beginning with particular criteria in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Loading-values-beginning-with-particular-criteria/m-p/1019885#M345127</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you don't want to exclude records having account_nos starting with something else than 'AA' from being loaded and just want to suppress the faulty account_nos instead, then one solution could be:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_1458257546544517 jive_text_macro" jivemacro_uid="_1458257546544517"&gt;
&lt;P&gt;LOAD If(account_no like 'AA*', &lt;SPAN style="font-size: 13.3333px;"&gt;account_no&lt;/SPAN&gt;) as account_no&lt;/P&gt;
&lt;P&gt;From YourSource;&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;still loading all records but replacing other &lt;SPAN style="font-size: 13.3333px;"&gt;account_nos than 'AA*' with null.&lt;/SPAN&gt;&lt;/P&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, 17 Mar 2016 23:33:55 GMT</pubDate>
    <dc:creator>MarcoWedel</dc:creator>
    <dc:date>2016-03-17T23:33:55Z</dc:date>
    <item>
      <title>Loading values beginning with particular criteria</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-values-beginning-with-particular-criteria/m-p/1019883#M345125</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a field 'account_no' which consists of the following :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1213980&lt;/P&gt;&lt;P&gt;1213950&lt;/P&gt;&lt;P&gt;AA12/400&lt;/P&gt;&lt;P&gt;AA13/500&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Id like to know how to load only those values beginning with 'AA'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Mar 2016 23:08:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-values-beginning-with-particular-criteria/m-p/1019883#M345125</guid>
      <dc:creator />
      <dc:date>2016-03-17T23:08:21Z</dc:date>
    </item>
    <item>
      <title>Re: Loading values beginning with particular criteria</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-values-beginning-with-particular-criteria/m-p/1019884#M345126</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [account_no]&lt;/P&gt;&lt;P&gt;FROM Source&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;WHERE [account_no] LIKE 'AA*';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Instead of LIKE, you can also use&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;WHERE Left([account_no],2) = 'AA';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;or&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;STRONG&gt;WHERE WildMatch([account_no], 'AA*');&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Mar 2016 23:17:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-values-beginning-with-particular-criteria/m-p/1019884#M345126</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2016-03-17T23:17:10Z</dc:date>
    </item>
    <item>
      <title>Re: Loading values beginning with particular criteria</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-values-beginning-with-particular-criteria/m-p/1019885#M345127</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you don't want to exclude records having account_nos starting with something else than 'AA' from being loaded and just want to suppress the faulty account_nos instead, then one solution could be:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_1458257546544517 jive_text_macro" jivemacro_uid="_1458257546544517"&gt;
&lt;P&gt;LOAD If(account_no like 'AA*', &lt;SPAN style="font-size: 13.3333px;"&gt;account_no&lt;/SPAN&gt;) as account_no&lt;/P&gt;
&lt;P&gt;From YourSource;&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;still loading all records but replacing other &lt;SPAN style="font-size: 13.3333px;"&gt;account_nos than 'AA*' with null.&lt;/SPAN&gt;&lt;/P&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, 17 Mar 2016 23:33:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-values-beginning-with-particular-criteria/m-p/1019885#M345127</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2016-03-17T23:33:55Z</dc:date>
    </item>
    <item>
      <title>Re: Loading values beginning with particular criteria</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-values-beginning-with-particular-criteria/m-p/1019886#M345128</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This should also work if you want to pull everything text and exclude everything number:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Table:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD Field &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Where IsText(Field);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD * Inline [&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Field&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1213980&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1213950&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;AA12/400&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;AA13/500&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;];&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Mar 2016 01:03:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-values-beginning-with-particular-criteria/m-p/1019886#M345128</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-03-18T01:03:01Z</dc:date>
    </item>
    <item>
      <title>Re: Loading values beginning with particular criteria</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-values-beginning-with-particular-criteria/m-p/1019887#M345129</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try like this using LIKE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [account_no],&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;*&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM DataSource&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;WHERE [account_no] LIKE 'AA*';&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Data:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [account_no],&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;*&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM DataSource&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;WHERE WildMatch([account_no], 'AA*');&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Hope this helps you.&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Mar 2016 02:00:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-values-beginning-with-particular-criteria/m-p/1019887#M345129</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2016-03-18T02:00:32Z</dc:date>
    </item>
  </channel>
</rss>

