<?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: Automatically drop fields with 0 information density in script in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Automatically-drop-fields-with-0-information-density-in-script/m-p/863210#M302144</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have never tried,&lt;/P&gt;&lt;P&gt;if so, it would only work via aggregation funtions like CONCAT and then the check, whether the length of the concatenated field is longer than 0 ....&lt;/P&gt;&lt;P&gt;But depending the size of the tables this might be quite timeconsuming.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 07 Apr 2015 08:40:21 GMT</pubDate>
    <dc:creator>prieper</dc:creator>
    <dc:date>2015-04-07T08:40:21Z</dc:date>
    <item>
      <title>Automatically drop fields with 0 information density in script</title>
      <link>https://community.qlik.com/t5/QlikView/Automatically-drop-fields-with-0-information-density-in-script/m-p/863207#M302141</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;I want to automatically drop all table fields in script, which have 0 Information density (= NULL values only). How can I achieve this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thx a lot!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marcel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Apr 2015 08:15:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Automatically-drop-fields-with-0-information-density-in-script/m-p/863207#M302141</guid>
      <dc:creator>hugmarcel</dc:creator>
      <dc:date>2015-04-07T08:15:13Z</dc:date>
    </item>
    <item>
      <title>Re: Automatically drop fields with 0 information density in script</title>
      <link>https://community.qlik.com/t5/QlikView/Automatically-drop-fields-with-0-information-density-in-script/m-p/863208#M302142</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;for individual fields you always need to specifiy, what to do:&lt;/P&gt;&lt;P&gt;LOAD * FROM ... WHERE LEN(TRIM(MyField)) &amp;gt; 0&lt;/P&gt;&lt;P&gt;this would exclude all records containing this field, when it is empty.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For total records, i.e. when there is no information in all fields, this is suppressed automatically by QV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Else specify your question further&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Apr 2015 08:25:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Automatically-drop-fields-with-0-information-density-in-script/m-p/863208#M302142</guid>
      <dc:creator>prieper</dc:creator>
      <dc:date>2015-04-07T08:25:22Z</dc:date>
    </item>
    <item>
      <title>Re: Automatically drop fields with 0 information density in script</title>
      <link>https://community.qlik.com/t5/QlikView/Automatically-drop-fields-with-0-information-density-in-script/m-p/863209#M302143</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;thank you, of course I can always check all fields individually by something as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD * FROM ... WHERE LEN(TRIM(MyField)) &amp;gt; 0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, this solution is very time consuming. I was hoping to find a more elegant table function, such as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FOR i = 0 TO NoOfTables() - 1&lt;/P&gt;&lt;P&gt; theTable = TableName(i);&lt;/P&gt;&lt;P&gt; FOR i = 1 TO NoOfFields('$(theTable)'); &lt;/P&gt;&lt;P&gt;&amp;nbsp; theField = FieldName(i, '$(theTable)');&lt;/P&gt;&lt;P&gt;&amp;nbsp; IF ((not Density('$(theField)')) THEN&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; DROP FIELD [$(theField)];&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; TRACE $(theField);&lt;/P&gt;&lt;P&gt;&amp;nbsp; END IF&lt;/P&gt;&lt;P&gt; NEXT&lt;/P&gt;&lt;P&gt;NEXT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards - Marcel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Apr 2015 08:32:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Automatically-drop-fields-with-0-information-density-in-script/m-p/863209#M302143</guid>
      <dc:creator>hugmarcel</dc:creator>
      <dc:date>2015-04-07T08:32:08Z</dc:date>
    </item>
    <item>
      <title>Re: Automatically drop fields with 0 information density in script</title>
      <link>https://community.qlik.com/t5/QlikView/Automatically-drop-fields-with-0-information-density-in-script/m-p/863210#M302144</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have never tried,&lt;/P&gt;&lt;P&gt;if so, it would only work via aggregation funtions like CONCAT and then the check, whether the length of the concatenated field is longer than 0 ....&lt;/P&gt;&lt;P&gt;But depending the size of the tables this might be quite timeconsuming.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Apr 2015 08:40:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Automatically-drop-fields-with-0-information-density-in-script/m-p/863210#M302144</guid>
      <dc:creator>prieper</dc:creator>
      <dc:date>2015-04-07T08:40:21Z</dc:date>
    </item>
    <item>
      <title>Re: Automatically drop fields with 0 information density in script</title>
      <link>https://community.qlik.com/t5/QlikView/Automatically-drop-fields-with-0-information-density-in-script/m-p/863211#M302145</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;additional thought:&lt;/P&gt;&lt;P&gt;why would you load fields without a content? will these field then never have data in it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Apr 2015 08:43:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Automatically-drop-fields-with-0-information-density-in-script/m-p/863211#M302145</guid>
      <dc:creator>prieper</dc:creator>
      <dc:date>2015-04-07T08:43:50Z</dc:date>
    </item>
    <item>
      <title>Re: Automatically drop fields with 0 information density in script</title>
      <link>https://community.qlik.com/t5/QlikView/Automatically-drop-fields-with-0-information-density-in-script/m-p/863212#M302146</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;Try this using FieldValueCount().&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FOR j = 0 TO NoOfTables() - 1&lt;/P&gt;&lt;P&gt;theTable = TableName(j);&lt;/P&gt;&lt;P&gt;FOR i = 1 TO NoOfFields('$(theTable)');&lt;/P&gt;&lt;P&gt;&amp;nbsp; theField = FieldName(i, '$(theTable)');&lt;/P&gt;&lt;P&gt;&amp;nbsp; LET vFieldValueCount = Alt(fieldvaluecount('$(theField)'), 0);&lt;/P&gt;&lt;P&gt;&amp;nbsp; IF Not vFieldValueCount &amp;gt; 0&amp;nbsp; THEN&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; DROP FIELD [$(theField)];&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; TRACE $(theField);&lt;/P&gt;&lt;P&gt;&amp;nbsp; END IF&lt;/P&gt;&lt;P&gt;NEXT&lt;/P&gt;&lt;P&gt;NEXT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Apr 2015 09:20:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Automatically-drop-fields-with-0-information-density-in-script/m-p/863212#M302146</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2015-04-07T09:20:13Z</dc:date>
    </item>
    <item>
      <title>Re: Automatically drop fields with 0 information density in script</title>
      <link>https://community.qlik.com/t5/QlikView/Automatically-drop-fields-with-0-information-density-in-script/m-p/863213#M302147</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you, I was searching for this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Apr 2015 09:34:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Automatically-drop-fields-with-0-information-density-in-script/m-p/863213#M302147</guid>
      <dc:creator>hugmarcel</dc:creator>
      <dc:date>2015-04-07T09:34:44Z</dc:date>
    </item>
    <item>
      <title>Re: Automatically drop fields with 0 information density in script</title>
      <link>https://community.qlik.com/t5/QlikView/Automatically-drop-fields-with-0-information-density-in-script/m-p/863214#M302148</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jagan,&lt;/P&gt;&lt;P&gt;Nice answer provided by you.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;However, Can you provide a solution if I want to drop fields that contain either Blank or null?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I found a bit complex solution:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FOR i = 0 TO NoOfTables() - 1&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;theTable = TableName(i);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FOR i = 1 TO NoOfFields('$(theTable)');&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; theField = FieldName(i, '$(theTable)');&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; DropField:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; LOAD Sum($(theField)) as Check1, Concat($(theField)) as Check2 Resident $(theTable);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; IF ( Peek('Check1',0,'DropField') =0 and&amp;nbsp;&amp;nbsp; Peek('Check2',0,'DropField')='')THEN&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp; DROP FIELD [$(theField)];&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp; TRACE $(theField);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; END IF&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DROP Table DropField;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;NEXT&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;NEXT&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any better way to this solution?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Apr 2015 09:54:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Automatically-drop-fields-with-0-information-density-in-script/m-p/863214#M302148</guid>
      <dc:creator>timanshu</dc:creator>
      <dc:date>2015-04-07T09:54:16Z</dc:date>
    </item>
    <item>
      <title>Re: Automatically drop fields with 0 information density in script</title>
      <link>https://community.qlik.com/t5/QlikView/Automatically-drop-fields-with-0-information-density-in-script/m-p/863215#M302149</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;Try this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FOR j = 0 TO NoOfTables() - 1&lt;/P&gt;&lt;P&gt;theTable = TableName(j);&lt;/P&gt;&lt;P&gt;FOR i = 1 TO NoOfFields('$(theTable)');&lt;/P&gt;&lt;P&gt;&amp;nbsp; theField = FieldName(i, '$(theTable)');&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; DropField:&lt;/P&gt;&lt;P&gt;&amp;nbsp; LOAD 1 as Check2 &lt;/P&gt;&lt;P&gt;&amp;nbsp; Resident $(theTable)&lt;/P&gt;&lt;P&gt;&amp;nbsp; WHERE Len(Trim($(theField))) &amp;gt; 0;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; LET vNoOfRows = NoOfRows('DropField');&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; DROP TABLE&amp;nbsp; DropField; &lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; IF vNoOfRows = 0&amp;nbsp; THEN&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; DROP FIELD [$(theField)];&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; TRACE $(theField);&lt;/P&gt;&lt;P&gt;&amp;nbsp; END IF&lt;/P&gt;&lt;P&gt;NEXT&lt;/P&gt;&lt;P&gt;NEXT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Apr 2015 10:27:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Automatically-drop-fields-with-0-information-density-in-script/m-p/863215#M302149</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2015-04-07T10:27:11Z</dc:date>
    </item>
    <item>
      <title>Re: Automatically drop fields with 0 information density in script</title>
      <link>https://community.qlik.com/t5/QlikView/Automatically-drop-fields-with-0-information-density-in-script/m-p/863216#M302150</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;However this still requires to write a load statement but still we don't require&amp;nbsp; to use sum and contact functions.&lt;/P&gt;&lt;P&gt;will probably&amp;nbsp; increase performance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Apr 2015 10:34:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Automatically-drop-fields-with-0-information-density-in-script/m-p/863216#M302150</guid>
      <dc:creator>timanshu</dc:creator>
      <dc:date>2015-04-07T10:34:24Z</dc:date>
    </item>
    <item>
      <title>Re: Automatically drop fields with 0 information density in script</title>
      <link>https://community.qlik.com/t5/QlikView/Automatically-drop-fields-with-0-information-density-in-script/m-p/863217#M302151</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Note that dropping a field in a table Impacts the internal field no index. Therefore you should use:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//Drop field with NULL values only, ignore fields in theExceptionFieldList&lt;/P&gt;&lt;P&gt;SUB DropQVFieldsWithNULLValuesOnly ( theExceptionFieldList )&lt;/P&gt;&lt;P&gt;&amp;nbsp; FOR a = 0 TO NoOfTables() - 1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LET vTable = TableName($(a));&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LET d = 0;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FOR i = 1 TO NoOfFields('$(vTable)')&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LET j = i - d;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LET vField = FieldName($(j), '$(vTable)');&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LET vFieldValueCount = Alt(FieldValueCount('$(vField)'), 0);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IF (vFieldValueCount &amp;lt;= 0 AND INDEX('$(vField)', '$(theExceptionFieldList)') &amp;lt;= 0) THEN&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DROP FIELD [$(vField)] FROM $(vTable);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TRACE DROP FIELD [$(vField)] FROM $(vTable); &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LET d = d + 1; // dropping fields impacts the internal field no.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; END IF&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NEXT i&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; NEXT a&lt;/P&gt;&lt;P&gt;END SUB&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And call the SUB with e.g. CALL DropQVFieldsWithNULLValuesOnly ( 'Booking - not to be deleted' );&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marcel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Apr 2015 12:39:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Automatically-drop-fields-with-0-information-density-in-script/m-p/863217#M302151</guid>
      <dc:creator>hugmarcel</dc:creator>
      <dc:date>2015-04-07T12:39:34Z</dc:date>
    </item>
    <item>
      <title>Re: Automatically drop fields with 0 information density in script</title>
      <link>https://community.qlik.com/t5/QlikView/Automatically-drop-fields-with-0-information-density-in-script/m-p/863218#M302152</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good catch Marcel.&amp;nbsp; I created a document in community with this content, because it may help others who are looking for similar one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Link: &lt;A href="https://community.qlik.com/docs/DOC-8237"&gt;Remove Empty columns (All Null values) in script dynamically&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Apr 2015 02:27:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Automatically-drop-fields-with-0-information-density-in-script/m-p/863218#M302152</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2015-04-08T02:27:50Z</dc:date>
    </item>
  </channel>
</rss>

