<?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 Combining tables with chosen columns in Connectivity &amp; Data Prep</title>
    <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Combining-tables-with-chosen-columns/m-p/1828444#M9424</link>
    <description>&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;I have two tables: the first one contains many columns, the 2nd one the necessary columns only. I need to load only chosen columns from the first one and then combine the table with the 2nd one.&lt;/P&gt;&lt;P&gt;What is wrong with the code below? After loading data no error messages but nothing happens - no table loaded.&lt;/P&gt;&lt;P&gt;sub QVDload&lt;BR /&gt;LOAD&lt;BR /&gt;"%Product ID",&lt;BR /&gt;"Product ID",&lt;BR /&gt;%Date,&lt;BR /&gt;"%Customer ID",&lt;BR /&gt;"Customer ID",&lt;BR /&gt;"# Sales Out Quantity"&lt;BR /&gt;FROM [lib://bms3_emea_root_folder/qvd_facts/f_WESI_SO.qvd](qvd);&lt;/P&gt;&lt;P&gt;Concatenate&lt;BR /&gt;load * from [lib://PL_CONS_TRACKER (ad_jwozniak)/EuSO.qvd](qvd);&lt;BR /&gt;end sub;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jacek2703_0-1628843048767.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/60062i3A17320894771EA8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jacek2703_0-1628843048767.png" alt="jacek2703_0-1628843048767.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Thank you for any help.&lt;/P&gt;</description>
    <pubDate>Fri, 13 Aug 2021 08:30:57 GMT</pubDate>
    <dc:creator>jacek2703</dc:creator>
    <dc:date>2021-08-13T08:30:57Z</dc:date>
    <item>
      <title>Combining tables with chosen columns</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Combining-tables-with-chosen-columns/m-p/1828444#M9424</link>
      <description>&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;I have two tables: the first one contains many columns, the 2nd one the necessary columns only. I need to load only chosen columns from the first one and then combine the table with the 2nd one.&lt;/P&gt;&lt;P&gt;What is wrong with the code below? After loading data no error messages but nothing happens - no table loaded.&lt;/P&gt;&lt;P&gt;sub QVDload&lt;BR /&gt;LOAD&lt;BR /&gt;"%Product ID",&lt;BR /&gt;"Product ID",&lt;BR /&gt;%Date,&lt;BR /&gt;"%Customer ID",&lt;BR /&gt;"Customer ID",&lt;BR /&gt;"# Sales Out Quantity"&lt;BR /&gt;FROM [lib://bms3_emea_root_folder/qvd_facts/f_WESI_SO.qvd](qvd);&lt;/P&gt;&lt;P&gt;Concatenate&lt;BR /&gt;load * from [lib://PL_CONS_TRACKER (ad_jwozniak)/EuSO.qvd](qvd);&lt;BR /&gt;end sub;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jacek2703_0-1628843048767.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/60062i3A17320894771EA8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jacek2703_0-1628843048767.png" alt="jacek2703_0-1628843048767.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Thank you for any help.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Aug 2021 08:30:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Combining-tables-with-chosen-columns/m-p/1828444#M9424</guid>
      <dc:creator>jacek2703</dc:creator>
      <dc:date>2021-08-13T08:30:57Z</dc:date>
    </item>
    <item>
      <title>Re: Combining tables with chosen columns</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Combining-tables-with-chosen-columns/m-p/1828447#M9425</link>
      <description>&lt;P&gt;if I understood correctly &lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/143971"&gt;@jacek2703&lt;/a&gt;&amp;nbsp; why use Sub ... end sub;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;to concatenate the 2 table you need to have the same names in both table&lt;/P&gt;&lt;P&gt;like :&lt;/P&gt;&lt;P&gt;QVDload:&lt;BR /&gt;LOAD&lt;BR /&gt;"%Product ID",&lt;BR /&gt;"Product ID",&lt;BR /&gt;%Date,&lt;BR /&gt;"%Customer ID",&lt;BR /&gt;"Customer ID",&lt;BR /&gt;"# Sales Out Quantity"&lt;BR /&gt;FROM [lib://bms3_emea_root_folder/qvd_facts/f_WESI_SO.qvd](qvd);&lt;/P&gt;&lt;P&gt;Concatenate&lt;BR /&gt;load&amp;nbsp;&lt;/P&gt;&lt;P&gt;"%Product ID",&lt;BR /&gt;"Product ID",&lt;BR /&gt;%Date,&lt;BR /&gt;"%Customer ID",&lt;BR /&gt;"Customer ID",&lt;BR /&gt;"# Sales Out Quantity"&lt;/P&gt;&lt;P&gt;from [lib://PL_CONS_TRACKER (ad_jwozniak)/EuSO.qvd](qvd);&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;if you dont have in EuSO the same name of field use .... as ...,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Aug 2021 08:42:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Combining-tables-with-chosen-columns/m-p/1828447#M9425</guid>
      <dc:creator>Taoufiq_Zarra</dc:creator>
      <dc:date>2021-08-13T08:42:17Z</dc:date>
    </item>
    <item>
      <title>Re: Combining tables with chosen columns</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Combining-tables-with-chosen-columns/m-p/1828526#M9427</link>
      <description>&lt;P&gt;Many thanks!!!&lt;/P&gt;</description>
      <pubDate>Fri, 13 Aug 2021 14:07:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Combining-tables-with-chosen-columns/m-p/1828526#M9427</guid>
      <dc:creator>jacek2703</dc:creator>
      <dc:date>2021-08-13T14:07:35Z</dc:date>
    </item>
    <item>
      <title>Re: Combining tables with chosen columns</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Combining-tables-with-chosen-columns/m-p/1829175#M9438</link>
      <description>&lt;P&gt;thanks again. And do you know how to solve this issue?&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/t5/New-to-Qlik-Sense/Dynamic-calculated-field-WOI/td-p/1828550" target="_blank"&gt;https://community.qlik.com/t5/New-to-Qlik-Sense/Dynamic-calculated-field-WOI/td-p/1828550&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I have been struggling with it for several days and I have no idea how to handle it.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Aug 2021 17:19:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Combining-tables-with-chosen-columns/m-p/1829175#M9438</guid>
      <dc:creator>jacek2703</dc:creator>
      <dc:date>2021-08-17T17:19:01Z</dc:date>
    </item>
  </channel>
</rss>

