<?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: How do I remove rows of data via the load script? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-do-I-remove-rows-of-data-via-the-load-script/m-p/529713#M1142163</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Steve,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had exactly the same problem and the best solution I found was to reload data with a condition that satisfies your criteria.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My example:&lt;/P&gt;&lt;P&gt;Table1:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;MonthName(Monthstart(date(submitDateTime))) as MYear, *&lt;/P&gt;&lt;P&gt;SQL SELECT * from dbo.aaa&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//(I can't use SQL "where" statement in my special case)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table2:&lt;/P&gt;&lt;P&gt;NOCONCATENATE LOAD * Resident Table1 WHERE [Are_you_happy]='No';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP Table Table1;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 26 Aug 2013 14:56:07 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-08-26T14:56:07Z</dc:date>
    <item>
      <title>How do I remove rows of data via the load script?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-remove-rows-of-data-via-the-load-script/m-p/529707#M1142157</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good morning all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do i go about removing rows of data via the load script based upon the contents of one column?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If a particular column contains a particular value, i want to remove the entire row of data (all columns).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any easy way to do that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks much,&lt;/P&gt;&lt;P&gt;Steve&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Aug 2013 12:23:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-remove-rows-of-data-via-the-load-script/m-p/529707#M1142157</guid>
      <dc:creator />
      <dc:date>2013-08-26T12:23:11Z</dc:date>
    </item>
    <item>
      <title>Re: How do I remove rows of data via the load script?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-remove-rows-of-data-via-the-load-script/m-p/529708#M1142158</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load A, B, C&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From &amp;lt;Source&amp;gt; Where A&amp;lt;&amp;gt;'XX';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Aug 2013 12:26:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-remove-rows-of-data-via-the-load-script/m-p/529708#M1142158</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2013-08-26T12:26:50Z</dc:date>
    </item>
    <item>
      <title>Re: How do I remove rows of data via the load script?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-remove-rows-of-data-via-the-load-script/m-p/529709#M1142159</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Steve,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the where condition same like Sql into qlikview. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then your sample code will be as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Temp:&lt;/P&gt;&lt;P&gt;load * from Table_name.qvd where ColumnName = 'ColumnValue';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Nilesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Aug 2013 12:29:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-remove-rows-of-data-via-the-load-script/m-p/529709#M1142159</guid>
      <dc:creator>nilesh_gangurde</dc:creator>
      <dc:date>2013-08-26T12:29:14Z</dc:date>
    </item>
    <item>
      <title>Re: How do I remove rows of data via the load script?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-remove-rows-of-data-via-the-load-script/m-p/529710#M1142160</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 you are at the script. There you say load Table files and take the file. Then you go next. There push Enable Transformation Step. So you see the columns and rows. You cna mark them say Delete Marked or go to conditional Delete. And there you can delete them by clicking. I mean you have a dropdown where you can say may "equals to" and then the name&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Aug 2013 12:35:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-remove-rows-of-data-via-the-load-script/m-p/529710#M1142160</guid>
      <dc:creator />
      <dc:date>2013-08-26T12:35:54Z</dc:date>
    </item>
    <item>
      <title>Re: How do I remove rows of data via the load script?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-remove-rows-of-data-via-the-load-script/m-p/529711#M1142161</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Steve,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just use the KEEP statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;. Ralf&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Aug 2013 13:08:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-remove-rows-of-data-via-the-load-script/m-p/529711#M1142161</guid>
      <dc:creator>rbecher</dc:creator>
      <dc:date>2013-08-26T13:08:56Z</dc:date>
    </item>
    <item>
      <title>Re: How do I remove rows of data via the load script?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-remove-rows-of-data-via-the-load-script/m-p/529712#M1142162</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;SPAN class="font-color-meta" style="padding: 0 0 5px; font-size: 1.2em; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #8b8b8b; background-color: #e6e6e6;"&gt;&lt;SPAN class="replyToName" style="font-style: inherit; font-family: inherit;"&gt;Steve Connelly&lt;/SPAN&gt;&lt;/SPAN&gt;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could try the wildmatch() function to exclude the rows you don't want to load. The wildmatch function searches for a substring inside a string field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The match function is similar to the wildmatch function but it performs a case sensitive comparison and the entire string should be passed instead of a substring.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See the attached file for more details. Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Aug 2013 13:42:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-remove-rows-of-data-via-the-load-script/m-p/529712#M1142162</guid>
      <dc:creator>jeffmartins</dc:creator>
      <dc:date>2013-08-26T13:42:21Z</dc:date>
    </item>
    <item>
      <title>Re: How do I remove rows of data via the load script?</title>
      <link>https://community.qlik.com/t5/QlikView/How-do-I-remove-rows-of-data-via-the-load-script/m-p/529713#M1142163</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Steve,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had exactly the same problem and the best solution I found was to reload data with a condition that satisfies your criteria.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My example:&lt;/P&gt;&lt;P&gt;Table1:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;MonthName(Monthstart(date(submitDateTime))) as MYear, *&lt;/P&gt;&lt;P&gt;SQL SELECT * from dbo.aaa&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//(I can't use SQL "where" statement in my special case)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table2:&lt;/P&gt;&lt;P&gt;NOCONCATENATE LOAD * Resident Table1 WHERE [Are_you_happy]='No';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP Table Table1;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Aug 2013 14:56:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-do-I-remove-rows-of-data-via-the-load-script/m-p/529713#M1142163</guid>
      <dc:creator />
      <dc:date>2013-08-26T14:56:07Z</dc:date>
    </item>
  </channel>
</rss>

