<?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 Load only fields with specific prefix in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Load-only-fields-with-specific-prefix/m-p/1034313#M348854</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there any (automated) way of doing a load of fields with specific prefixes. I have a table (example Table A below) that is constantly modified and rather than have to add and removes fields every time it would be great screen the fields (as an example in Table B below where it would automatically only pull in fields beginning with MI):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;Table A:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;MI Customer,&lt;/P&gt;&lt;P&gt;MI Region ,&lt;/P&gt;&lt;P&gt;MI Amount,&lt;/P&gt;&lt;P&gt;Sales,&lt;/P&gt;&lt;P&gt;Employee,&lt;/P&gt;&lt;P&gt;Budget&lt;/P&gt;&lt;P&gt;From Table_Source;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="text-decoration: underline;"&gt;Table B:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;{only fields beginning in MI}&lt;/P&gt;&lt;P&gt;Resident Table A:&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 02 Feb 2016 17:48:42 GMT</pubDate>
    <dc:creator>zagzebski</dc:creator>
    <dc:date>2016-02-02T17:48:42Z</dc:date>
    <item>
      <title>Load only fields with specific prefix</title>
      <link>https://community.qlik.com/t5/QlikView/Load-only-fields-with-specific-prefix/m-p/1034313#M348854</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there any (automated) way of doing a load of fields with specific prefixes. I have a table (example Table A below) that is constantly modified and rather than have to add and removes fields every time it would be great screen the fields (as an example in Table B below where it would automatically only pull in fields beginning with MI):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;Table A:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;MI Customer,&lt;/P&gt;&lt;P&gt;MI Region ,&lt;/P&gt;&lt;P&gt;MI Amount,&lt;/P&gt;&lt;P&gt;Sales,&lt;/P&gt;&lt;P&gt;Employee,&lt;/P&gt;&lt;P&gt;Budget&lt;/P&gt;&lt;P&gt;From Table_Source;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="text-decoration: underline;"&gt;Table B:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;{only fields beginning in MI}&lt;/P&gt;&lt;P&gt;Resident Table A:&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Feb 2016 17:48:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-only-fields-with-specific-prefix/m-p/1034313#M348854</guid>
      <dc:creator>zagzebski</dc:creator>
      <dc:date>2016-02-02T17:48:42Z</dc:date>
    </item>
    <item>
      <title>Re: Load only fields with specific prefix</title>
      <link>https://community.qlik.com/t5/QlikView/Load-only-fields-with-specific-prefix/m-p/1034314#M348855</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Yes, that's possible. &lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P&gt;[Table A]:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;MI One, MI Two, MI Three, Four, Five&lt;/P&gt;&lt;P&gt;1,2,3,4,5&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET vFields = NoOfFields('Table A');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For j=1 to $(vFields)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LET vField = FieldName($(j),'Table A');&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; WHEN FindOneOf('$(vField)','MI') LET vFieldList = '$(vFieldList)' &amp;amp; ', ' &amp;amp; '[$(vField)]';&lt;/P&gt;&lt;P&gt;next&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET vFieldList = Mid('$(vFieldList)',2);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[Table B]:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $(vFieldList)&amp;nbsp; &lt;/P&gt;&lt;P&gt;RESIDENT&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Table A]&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET vFieldList=;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Feb 2016 18:02:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-only-fields-with-specific-prefix/m-p/1034314#M348855</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2016-02-02T18:02:16Z</dc:date>
    </item>
    <item>
      <title>Re: Load only fields with specific prefix</title>
      <link>https://community.qlik.com/t5/QlikView/Load-only-fields-with-specific-prefix/m-p/1034315#M348856</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Feb 2016 18:06:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-only-fields-with-specific-prefix/m-p/1034315#M348856</guid>
      <dc:creator>zagzebski</dc:creator>
      <dc:date>2016-02-02T18:06:51Z</dc:date>
    </item>
  </channel>
</rss>

