<?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: Load importing unwanted columns QLik sense in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Load-importing-unwanted-columns-QLik-sense/m-p/2163230#M94433</link>
    <description>&lt;P&gt;Hi &lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/260445"&gt;@h2bi&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Try This :&lt;/P&gt;
&lt;P&gt;T:&lt;BR /&gt;Load * inline [&lt;BR /&gt;Ta,Tb,Tc,Td&lt;BR /&gt;A,1,,&lt;BR /&gt;B,2,,&lt;BR /&gt;C,4,&lt;BR /&gt;D,,1,];&lt;/P&gt;
&lt;P&gt;//Replace inline with your excel file location :&amp;nbsp;&lt;SPAN&gt;FROM [lib://tables/table.xlsx]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;//(ooxml, embedded labels, table is Sheet1);&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;for i = 1 to NoOfFields('T')&lt;/P&gt;
&lt;P&gt;Let j=FieldName($(i),'T');&lt;/P&gt;
&lt;P&gt;Temp:&lt;BR /&gt;Load distinct&lt;BR /&gt;'$(j)' as Fieldname&lt;BR /&gt;Resident T where len(trim($(j)))&amp;lt;&amp;gt;0;&lt;/P&gt;
&lt;P&gt;next i;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Final:&lt;BR /&gt;Load &lt;BR /&gt;Concat(distinct Fieldname,',') as Final_List&lt;BR /&gt;Resident Temp;&lt;/P&gt;
&lt;P&gt;drop table Temp;&lt;/P&gt;
&lt;P&gt;Let v=peek('Final_List',0,'Final');&lt;/P&gt;
&lt;P&gt;Trace '$(v)';&lt;/P&gt;
&lt;P&gt;drop table Final;&lt;/P&gt;
&lt;P&gt;NoConcatenate&lt;BR /&gt;TableA:&lt;BR /&gt;Load &lt;BR /&gt;$(v)&lt;BR /&gt;Resident T;&lt;/P&gt;
&lt;P&gt;drop table T;&lt;/P&gt;
&lt;P&gt;Exit script;&lt;/P&gt;
&lt;P&gt;As per the code Td column won't load in my front end. Please refer attached image :&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Rohan_0-1705659047455.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/127395i22CB9532218C69C2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Rohan_0-1705659047455.png" alt="Rohan_0-1705659047455.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Let me know if it worked for you.&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Rohan.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 19 Jan 2024 10:11:24 GMT</pubDate>
    <dc:creator>Rohan</dc:creator>
    <dc:date>2024-01-19T10:11:24Z</dc:date>
    <item>
      <title>Load importing unwanted columns QLik sense</title>
      <link>https://community.qlik.com/t5/App-Development/Load-importing-unwanted-columns-QLik-sense/m-p/2163185#M94430</link>
      <description>&lt;P&gt;Hello, i am trying to load a table, but QLik is loading unwanted empty columns, in the sheet we constantly add new column names with new data so i cannot just unselect those empty columns, i am looking for something that can only load the columns with names and data dynamically&lt;/P&gt;
&lt;P&gt;My sheet:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="h2bi_0-1705651455549.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/127381iB28B0258382C9F47/image-size/medium?v=v2&amp;amp;px=400" role="button" title="h2bi_0-1705651455549.png" alt="h2bi_0-1705651455549.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;The load problem:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="h2bi_1-1705651488020.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/127382i28AFFF181B20BCB9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="h2bi_1-1705651488020.png" alt="h2bi_1-1705651488020.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;table:&lt;BR /&gt;LOAD&lt;BR /&gt;"Date",&lt;BR /&gt;"45207",&lt;BR /&gt;"452071",&lt;BR /&gt;"452072",&lt;BR /&gt;"45210",&lt;BR /&gt;"45211",&lt;BR /&gt;"45216",&lt;BR /&gt;"45223",&lt;BR /&gt;F9,&lt;BR /&gt;F10,&lt;BR /&gt;F11,&lt;BR /&gt;F12,&lt;BR /&gt;F13,&lt;BR /&gt;F14,&lt;BR /&gt;F15&lt;BR /&gt;FROM [lib://tables/table.xlsx]&lt;BR /&gt;(ooxml, embedded labels, table is Sheet1);&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note: i cannot touch the excel file&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jan 2024 08:07:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Load-importing-unwanted-columns-QLik-sense/m-p/2163185#M94430</guid>
      <dc:creator>h2bi</dc:creator>
      <dc:date>2024-01-19T08:07:00Z</dc:date>
    </item>
    <item>
      <title>Re: Load importing unwanted columns QLik sense</title>
      <link>https://community.qlik.com/t5/App-Development/Load-importing-unwanted-columns-QLik-sense/m-p/2163230#M94433</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/260445"&gt;@h2bi&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Try This :&lt;/P&gt;
&lt;P&gt;T:&lt;BR /&gt;Load * inline [&lt;BR /&gt;Ta,Tb,Tc,Td&lt;BR /&gt;A,1,,&lt;BR /&gt;B,2,,&lt;BR /&gt;C,4,&lt;BR /&gt;D,,1,];&lt;/P&gt;
&lt;P&gt;//Replace inline with your excel file location :&amp;nbsp;&lt;SPAN&gt;FROM [lib://tables/table.xlsx]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;//(ooxml, embedded labels, table is Sheet1);&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;for i = 1 to NoOfFields('T')&lt;/P&gt;
&lt;P&gt;Let j=FieldName($(i),'T');&lt;/P&gt;
&lt;P&gt;Temp:&lt;BR /&gt;Load distinct&lt;BR /&gt;'$(j)' as Fieldname&lt;BR /&gt;Resident T where len(trim($(j)))&amp;lt;&amp;gt;0;&lt;/P&gt;
&lt;P&gt;next i;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Final:&lt;BR /&gt;Load &lt;BR /&gt;Concat(distinct Fieldname,',') as Final_List&lt;BR /&gt;Resident Temp;&lt;/P&gt;
&lt;P&gt;drop table Temp;&lt;/P&gt;
&lt;P&gt;Let v=peek('Final_List',0,'Final');&lt;/P&gt;
&lt;P&gt;Trace '$(v)';&lt;/P&gt;
&lt;P&gt;drop table Final;&lt;/P&gt;
&lt;P&gt;NoConcatenate&lt;BR /&gt;TableA:&lt;BR /&gt;Load &lt;BR /&gt;$(v)&lt;BR /&gt;Resident T;&lt;/P&gt;
&lt;P&gt;drop table T;&lt;/P&gt;
&lt;P&gt;Exit script;&lt;/P&gt;
&lt;P&gt;As per the code Td column won't load in my front end. Please refer attached image :&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Rohan_0-1705659047455.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/127395i22CB9532218C69C2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Rohan_0-1705659047455.png" alt="Rohan_0-1705659047455.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Let me know if it worked for you.&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Rohan.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jan 2024 10:11:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Load-importing-unwanted-columns-QLik-sense/m-p/2163230#M94433</guid>
      <dc:creator>Rohan</dc:creator>
      <dc:date>2024-01-19T10:11:24Z</dc:date>
    </item>
    <item>
      <title>Re: Load importing unwanted columns QLik sense</title>
      <link>https://community.qlik.com/t5/App-Development/Load-importing-unwanted-columns-QLik-sense/m-p/2164403#M94574</link>
      <description>&lt;P&gt;The columns are included from the wizard because they are be used - maybe just because that there is further any content. Deleting the content doesn't reset the used-flagging else only deleting entire rows/columns would reset this information. Therefore communicating with the Excel owner may remove this issue without any extra load-step.&lt;/P&gt;
&lt;P&gt;Beside this the data-source is a crosstable which is probably later transformed into a normal data-structure and there is NULL automatically exclude and EMPTY values could be removed with a simple where-clause.&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jan 2024 13:15:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Load-importing-unwanted-columns-QLik-sense/m-p/2164403#M94574</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2024-01-23T13:15:15Z</dc:date>
    </item>
  </channel>
</rss>

