<?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 Problem with Drill-Down Group Expressions in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Problem-with-Drill-Down-Group-Expressions/m-p/328194#M583616</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; I think the Allocated Memory problem happens when you create a circular reference or a scenario that approximates an outer join. Have you checked your model to make sure that "agent" isn't defined more than once and/or isn't part of a messy complex join?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe change the initial query such that it will handle the &amp;lt;NV&amp;gt; logic? Something like:&lt;/P&gt;&lt;P&gt;SQL SELECT&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; case when Agent != '&amp;lt;NV&amp;gt;' then Agent else '********' end as Agent&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ....&lt;/P&gt;&lt;P&gt;FROM YourTable&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That way at least you get rid of the nested IF. You could also take this opportunity to rename the column if it is part of a messy join.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 11 Oct 2011 23:05:34 GMT</pubDate>
    <dc:creator />
    <dc:date>2011-10-11T23:05:34Z</dc:date>
    <item>
      <title>Problem with Drill-Down Group Expressions</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-Drill-Down-Group-Expressions/m-p/328193#M583615</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone, I am trying to add an expression to be used as a Field inside a Drill Down Group, but it doesnt seem to like any sort of expression that I put there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's an example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=&lt;/P&gt;&lt;P&gt;IF( varDisplayAgent=1,&lt;/P&gt;&lt;P&gt; if(Agent&amp;lt;&amp;gt;'&amp;lt;NV&amp;gt;', Agent)&lt;/P&gt;&lt;P&gt;, '***********'&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="QV.jpg" class="jive-image-thumbnail jive-image" onclick="" src="https://community.qlik.com/legacyfs/online/7799_QV.jpg" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is a pretty basic expression, why do you think it mught not like it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I use the new Field in the drill-down scenario, the chart shows "Allocated Memory Exeeded"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any Suggestion?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Oct 2011 21:53:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-Drill-Down-Group-Expressions/m-p/328193#M583615</guid>
      <dc:creator />
      <dc:date>2011-10-11T21:53:47Z</dc:date>
    </item>
    <item>
      <title>Problem with Drill-Down Group Expressions</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-Drill-Down-Group-Expressions/m-p/328194#M583616</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; I think the Allocated Memory problem happens when you create a circular reference or a scenario that approximates an outer join. Have you checked your model to make sure that "agent" isn't defined more than once and/or isn't part of a messy complex join?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe change the initial query such that it will handle the &amp;lt;NV&amp;gt; logic? Something like:&lt;/P&gt;&lt;P&gt;SQL SELECT&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; case when Agent != '&amp;lt;NV&amp;gt;' then Agent else '********' end as Agent&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ....&lt;/P&gt;&lt;P&gt;FROM YourTable&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That way at least you get rid of the nested IF. You could also take this opportunity to rename the column if it is part of a messy join.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Oct 2011 23:05:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-Drill-Down-Group-Expressions/m-p/328194#M583616</guid>
      <dc:creator />
      <dc:date>2011-10-11T23:05:34Z</dc:date>
    </item>
    <item>
      <title>Problem with Drill-Down Group Expressions</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-Drill-Down-Group-Expressions/m-p/328195#M583617</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Dave, now that you mention load script, I forgot to mention, that this "translation" needs to happen after load, since the variable "varDisplayAgent" will be loaded from the database, that's why I was trying to test the variable in the UI.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Oct 2011 00:00:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-Drill-Down-Group-Expressions/m-p/328195#M583617</guid>
      <dc:creator />
      <dc:date>2011-10-12T00:00:32Z</dc:date>
    </item>
  </channel>
</rss>

