<?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 Exclude 'TEST'-user from table when loading script in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Exclude-TEST-user-from-table-when-loading-script/m-p/310579#M114674</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;I have a key-table of users (userID) and all post that are associated with the user TEST are garbage. How can I exclude these posts when I load the script?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;userID&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;FROM....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 19 Dec 2011 09:41:12 GMT</pubDate>
    <dc:creator />
    <dc:date>2011-12-19T09:41:12Z</dc:date>
    <item>
      <title>Exclude 'TEST'-user from table when loading script</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-TEST-user-from-table-when-loading-script/m-p/310579#M114674</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;I have a key-table of users (userID) and all post that are associated with the user TEST are garbage. How can I exclude these posts when I load the script?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;userID&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;FROM....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Dec 2011 09:41:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-TEST-user-from-table-when-loading-script/m-p/310579#M114674</guid>
      <dc:creator />
      <dc:date>2011-12-19T09:41:12Z</dc:date>
    </item>
    <item>
      <title>Exclude 'TEST'-user from table when loading script</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-TEST-user-from-table-when-loading-script/m-p/310580#M114675</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;If I have understood your requirement, you can use the WHERE clause in your LOAD to exclude the TEST users. You might need to use one of the string functions (for example, you might need to check if TEST is anywhere within the userID field).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Dec 2011 10:07:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-TEST-user-from-table-when-loading-script/m-p/310580#M114675</guid>
      <dc:creator>richard_chilvers</dc:creator>
      <dc:date>2011-12-19T10:07:45Z</dc:date>
    </item>
    <item>
      <title>Exclude 'TEST'-user from table when loading script</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-TEST-user-from-table-when-loading-script/m-p/310581#M114676</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hi ,&lt;/P&gt;&lt;P&gt;You can use function Substringcount in where clause,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;USERID,.&lt;/P&gt;&lt;P&gt;..&lt;/P&gt;&lt;P&gt;..&lt;/P&gt;&lt;P&gt;From ABC Where Substringcount(Upper(USERID),'TEST')=0;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I used upper function to convert USERID to uppercase while matching.&lt;/P&gt;&lt;P&gt;Hope this will help.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;VIjay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Dec 2011 11:52:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-TEST-user-from-table-when-loading-script/m-p/310581#M114676</guid>
      <dc:creator>vijay_iitkgp</dc:creator>
      <dc:date>2011-12-19T11:52:30Z</dc:date>
    </item>
    <item>
      <title>Exclude 'TEST'-user from table when loading script</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-TEST-user-from-table-when-loading-script/m-p/310582#M114677</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hi&lt;/P&gt;&lt;P&gt;Thanks. "Where substringcount" works well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just one more thing. In the script I load from 3 diffrent databases wich all includes tables with user id´s but with diffrent tablename in each of the 3 databases. I merge them into a single new table with ..."as UserID"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do I apply the substringcount to the new table (UserID). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I´m knew to this so all help are usefull. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Dec 2011 12:37:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-TEST-user-from-table-when-loading-script/m-p/310582#M114677</guid>
      <dc:creator />
      <dc:date>2011-12-19T12:37:11Z</dc:date>
    </item>
    <item>
      <title>Exclude 'TEST'-user from table when loading script</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-TEST-user-from-table-when-loading-script/m-p/310583#M114678</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; If you are concatenating all three tables then use this function at each table in where clause with Actual Name of USERID field.&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;VIjay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Dec 2011 12:41:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-TEST-user-from-table-when-loading-script/m-p/310583#M114678</guid>
      <dc:creator>vijay_iitkgp</dc:creator>
      <dc:date>2011-12-19T12:41:56Z</dc:date>
    </item>
  </channel>
</rss>

