<?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: Remove fields from a table mentioned in other table in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Remove-fields-from-a-table-mentioned-in-other-table/m-p/123462#M18816</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, maybe like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FOR vCounter = 0 to NoOfRows('RemoveColumns')-1&lt;/P&gt;&lt;P&gt;&amp;nbsp; CurrentField = Peek('Columns', vCounter,'RemoveColumns'); &lt;/P&gt;&lt;P&gt;&amp;nbsp; Drop Field [$(CurrentField)] From [MainTable];&lt;/P&gt;&lt;P&gt;NEXT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 01 Oct 2018 07:05:45 GMT</pubDate>
    <dc:creator>andrey_krylov</dc:creator>
    <dc:date>2018-10-01T07:05:45Z</dc:date>
    <item>
      <title>Remove fields from a table mentioned in other table</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-fields-from-a-table-mentioned-in-other-table/m-p/123461#M18815</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a requirement in which I want to exclude columns present in a table in one column and remove them from the main table.&lt;/P&gt;&lt;P&gt;I am attaching a sample in which I have a MainTable from which I want to exclude fields present in other table RemoveColumns in Columns Field. So the Final table will have columns as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ProductID , Product, Shape, Price, Order.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;Ferha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Oct 2018 06:58:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-fields-from-a-table-mentioned-in-other-table/m-p/123461#M18815</guid>
      <dc:creator>ferha_jafri</dc:creator>
      <dc:date>2018-10-01T06:58:54Z</dc:date>
    </item>
    <item>
      <title>Re: Remove fields from a table mentioned in other table</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-fields-from-a-table-mentioned-in-other-table/m-p/123462#M18816</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, maybe like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FOR vCounter = 0 to NoOfRows('RemoveColumns')-1&lt;/P&gt;&lt;P&gt;&amp;nbsp; CurrentField = Peek('Columns', vCounter,'RemoveColumns'); &lt;/P&gt;&lt;P&gt;&amp;nbsp; Drop Field [$(CurrentField)] From [MainTable];&lt;/P&gt;&lt;P&gt;NEXT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Oct 2018 07:05:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-fields-from-a-table-mentioned-in-other-table/m-p/123462#M18816</guid>
      <dc:creator>andrey_krylov</dc:creator>
      <dc:date>2018-10-01T07:05:45Z</dc:date>
    </item>
    <item>
      <title>Re: Remove fields from a table mentioned in other table</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-fields-from-a-table-mentioned-in-other-table/m-p/123463#M18817</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;&lt;SPAN style="font-size: 13.3333px;"&gt;RemoveColumns:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;LOAD &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; Concat(Columns, ',') as ConcatCols&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; INLINE [&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Columns&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Quantity&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; SalePerson&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; OrderDetail&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;];&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Let vCols=Peek('ConcatCols');&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;DROP Fields $(vCols), ConcatCols;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Oct 2018 07:10:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-fields-from-a-table-mentioned-in-other-table/m-p/123463#M18817</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2018-10-01T07:10:25Z</dc:date>
    </item>
    <item>
      <title>Re: Remove fields from a table mentioned in other table</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-fields-from-a-table-mentioned-in-other-table/m-p/123464#M18818</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;By large datasets the reverse way of just loading the needed fields might be more suitable as loading everything and removing than the unwanted fields. Take a look on the suggestion from Tresesco which will also work for the load-statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Oct 2018 07:15:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-fields-from-a-table-mentioned-in-other-table/m-p/123464#M18818</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2018-10-01T07:15:48Z</dc:date>
    </item>
  </channel>
</rss>

