<?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: Hide record in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Hide-record/m-p/1174103#M463696</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you and sorry for answering so late.&lt;/P&gt;&lt;P&gt;This was my "beginners-problem" - now it's solved. Perfect!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 25 Jun 2016 13:16:31 GMT</pubDate>
    <dc:creator />
    <dc:date>2016-06-25T13:16:31Z</dc:date>
    <item>
      <title>Hide record</title>
      <link>https://community.qlik.com/t5/QlikView/Hide-record/m-p/1174101#M463694</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Topic translated by Community Team member.&lt;/P&gt;&lt;P&gt;Please post in English unless you are posting in a language specific section.&lt;/P&gt;&lt;P&gt;---&lt;/P&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I'm new to QlikView and have a question and although I would hide in a table all rows that&lt;/P&gt;&lt;P&gt;1. In the dimension xyz nothing stands in it and&lt;/P&gt;&lt;P&gt;2. calculated in the table formula 0 comes out&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I wanted to do it with the where clause, but that only works in the dimension.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then I thought, I create the formula that has been stored in the table in the script, and then takes the using the where Bediungng function. But I can of myself inexplicably the formula does not create the script, there is always an error message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What am I doing wrong?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here the script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load *,&lt;/P&gt;&lt;P&gt;sum(VkFaktor) as Jahres_ges&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //* this is the formula that I have re-inserted and then award a new variable for it.&lt;/P&gt;&lt;P&gt;resident Plan4;&lt;/P&gt;&lt;P&gt;where (exists (OMS)) and Jahres_ges &amp;gt; 0)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;drop table Plan4;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Jun 2016 17:50:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Hide-record/m-p/1174101#M463694</guid>
      <dc:creator />
      <dc:date>2016-06-12T17:50:51Z</dc:date>
    </item>
    <item>
      <title>Re: Hide record</title>
      <link>https://community.qlik.com/t5/QlikView/Hide-record/m-p/1174102#M463695</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not too sure what's the end goal is (the translation is a bit fuzzy), however I can point out what's wrong in your load statement... You can only use the sum() function in a GROUP BY load, not in a regular load of a table. So, the following statement would be valid:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Item,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; sum(Factor) as SumFactor&lt;/P&gt;&lt;P&gt;resident&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Plan4&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;GROUP BY Item&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;however the next statement is wrong - sum() is not allowed without GROUP BY:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;LOAD&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; *,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; sum(Factor) as SumFactor&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;resident&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Plan4&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;cheers,&lt;/P&gt;&lt;P&gt;Oleg Troyansky&lt;/P&gt;&lt;P&gt;Check out my new book &lt;A href="http://www.amazon.com/gp/product/1118949552/ref=as_li_tl?ie=UTF8&amp;amp;camp=1789&amp;amp;creative=9325&amp;amp;creativeASIN=1118949552&amp;amp;linkCode=as2&amp;amp;tag=natursyner0f-20&amp;amp;linkId=IN55M5EPRHLRBWIQ"&gt;QlikView Your Business&lt;/A&gt; - The Expert Guide for QlikView and Qlik Sense&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Jun 2016 20:41:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Hide-record/m-p/1174102#M463695</guid>
      <dc:creator>Oleg_Troyansky</dc:creator>
      <dc:date>2016-06-12T20:41:28Z</dc:date>
    </item>
    <item>
      <title>Re: Hide record</title>
      <link>https://community.qlik.com/t5/QlikView/Hide-record/m-p/1174103#M463696</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you and sorry for answering so late.&lt;/P&gt;&lt;P&gt;This was my "beginners-problem" - now it's solved. Perfect!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Jun 2016 13:16:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Hide-record/m-p/1174103#M463696</guid>
      <dc:creator />
      <dc:date>2016-06-25T13:16:31Z</dc:date>
    </item>
  </channel>
</rss>

