<?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: How to exclude empty records from a table to historize? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-exclude-empty-records-from-a-table-to-historize/m-p/869347#M304014</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For the field which you have no value use &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Load *&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;from where len(Field)&amp;lt;&amp;gt;0;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 04 May 2015 09:43:48 GMT</pubDate>
    <dc:creator>sujeetsingh</dc:creator>
    <dc:date>2015-05-04T09:43:48Z</dc:date>
    <item>
      <title>How to exclude empty records from a table to historize?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-exclude-empty-records-from-a-table-to-historize/m-p/869346#M304013</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 have a table that should have 16 records to historize on a daily basis - but it has 17.&lt;/P&gt;&lt;P&gt;=&amp;gt; That is because I have used a FIRST 1 LOAD to generate a dummy_table which I could concatenate to in every iteration of a loop.&lt;/P&gt;&lt;P&gt;Now I am trying to get rid of this again.&lt;/P&gt;&lt;P&gt;In some fields, there is nothing even in those records which I want to keep, but there are other fields where there is always a value.&lt;/P&gt;&lt;P&gt;So I tried with LEN() and ISTEXT() already, but those don't work for whatever reason.&lt;/P&gt;&lt;P&gt;Is there another way to do this more reliably?&lt;/P&gt;&lt;P&gt;Thanks a lot!&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DataNibbler&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 May 2015 09:32:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-exclude-empty-records-from-a-table-to-historize/m-p/869346#M304013</guid>
      <dc:creator>datanibbler</dc:creator>
      <dc:date>2015-05-04T09:32:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to exclude empty records from a table to historize?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-exclude-empty-records-from-a-table-to-historize/m-p/869347#M304014</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For the field which you have no value use &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Load *&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;from where len(Field)&amp;lt;&amp;gt;0;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 May 2015 09:43:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-exclude-empty-records-from-a-table-to-historize/m-p/869347#M304014</guid>
      <dc:creator>sujeetsingh</dc:creator>
      <dc:date>2015-05-04T09:43:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to exclude empty records from a table to historize?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-exclude-empty-records-from-a-table-to-historize/m-p/869348#M304015</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Alternately, use a LOAD prefix in a variable. For example, this one does away with the FIRST 1 LOAD... (I know you don't like the wiggly lines at all, sorry about that &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;LET vLoadPrefix = '[Table H]: NOCONCATENATE';&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;FOR x = 1 TO 16&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; $(vLoadPrefix)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; LOAD &lt;EM&gt;whatever&lt;/EM&gt; FROM &lt;EM&gt;wherever&lt;/EM&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; LET vLoadPrefix = 'CONCATENATE ([Table H])';&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;NEXT&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, sans-serif; font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, sans-serif; font-size: 10pt;"&gt;Best,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, sans-serif; font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;SPAN style="font-size: 10pt; font-family: arial, helvetica, sans-serif;"&gt;Peter&lt;/SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 May 2015 09:53:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-exclude-empty-records-from-a-table-to-historize/m-p/869348#M304015</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2015-05-04T09:53:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to exclude empty records from a table to historize?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-exclude-empty-records-from-a-table-to-historize/m-p/869349#M304016</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Peter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;no worries.&lt;/P&gt;&lt;P&gt;But in the meantime I have found a way of my own.&lt;/P&gt;&lt;P&gt;I just find out the nr. of rows in that table and then use a FIRST ... statement to load one less ( I have sorted it before, so I know that the empty record is the last one).&lt;/P&gt;&lt;P&gt;Thanks a lot anyway!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P.S.: I still have no clue why I cannot mark any answers as "helpful" anymore, I just have one button "correct" and logically I can use that only once ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 May 2015 09:59:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-exclude-empty-records-from-a-table-to-historize/m-p/869349#M304016</guid>
      <dc:creator>datanibbler</dc:creator>
      <dc:date>2015-05-04T09:59:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to exclude empty records from a table to historize?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-exclude-empty-records-from-a-table-to-historize/m-p/869350#M304017</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ah, maybe this is why I don't seem to get any Helpful's anymore. Look under Actions (is it Aufgaben in German? Dunno) in the bottom left corner of every post. It should be there...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BTW IMHO this is indeed a rather bad design decision from Jive. Or are we getting too much points too quickly?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 May 2015 10:12:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-exclude-empty-records-from-a-table-to-historize/m-p/869350#M304017</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2015-05-04T10:12:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to exclude empty records from a table to historize?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-exclude-empty-records-from-a-table-to-historize/m-p/869351#M304018</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;No, that one is "Aktionen" in German. Pretty similar. I don't know who changed this and why, but there used to be a rather obvious button ... I know it is still around somewhere though because I get lots of emails when someone marked someone's reply as "helpful" which&lt;EM&gt; &lt;/EM&gt;I don't really care about &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P.S.: You are right. It is under "Actions". Not quite obvious ...&lt;/P&gt;&lt;P&gt;If employers were to look at the points in this community whenever someone looks for a job in this area ... but that is not the case. I am currently not so sure about my job here - it is okay, but not ideal. So I'm looking for a way (other than the official certifications which I'm unlikely to get) to "prove" my experience with QlikView. Unfortunately in Germany, official papers are worth a lot and without them it is harder ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 May 2015 10:16:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-exclude-empty-records-from-a-table-to-historize/m-p/869351#M304018</guid>
      <dc:creator>datanibbler</dc:creator>
      <dc:date>2015-05-04T10:16:18Z</dc:date>
    </item>
  </channel>
</rss>

