<?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 Columns in Straight Table depending on Cycle Group in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Hide-Columns-in-Straight-Table-depending-on-Cycle-Group/m-p/782786#M277167</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Many thanks Jonathan!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your example is working great and I solved my problem!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks again,&lt;/P&gt;&lt;P&gt;Harry&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 07 Nov 2014 11:07:00 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-11-07T11:07:00Z</dc:date>
    <item>
      <title>Hide Columns in Straight Table depending on Cycle Group</title>
      <link>https://community.qlik.com/t5/QlikView/Hide-Columns-in-Straight-Table-depending-on-Cycle-Group/m-p/782781#M277162</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a straight table and want to replace/hide the columns in case my cycle box gets a new value.&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;Example:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My cycle box contains bike and car. In case i choose car i want different columns shown with the car attributes. In case i choose bike the car columns shouldn't be shown and be replaced by the different bike columns.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried to set up the conditional for columns under presentation but it doesn't worked!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks,&lt;/P&gt;&lt;P&gt;Harry&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Nov 2014 17:42:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Hide-Columns-in-Straight-Table-depending-on-Cycle-Group/m-p/782781#M277162</guid>
      <dc:creator />
      <dc:date>2014-11-06T17:42:51Z</dc:date>
    </item>
    <item>
      <title>Re: Hide Columns in Straight Table depending on Cycle Group</title>
      <link>https://community.qlik.com/t5/QlikView/Hide-Columns-in-Straight-Table-depending-on-Cycle-Group/m-p/782782#M277163</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use the getcurrentfield function to retrieve the name active field in the cylce group. You can use this in the conditional expression. For example =if(getcurrentfield(MyCyclicGroup)='car',1,0) for the fields that should be shown when car is the active field in the cycle group MyCyclicGroup&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Nov 2014 18:05:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Hide-Columns-in-Straight-Table-depending-on-Cycle-Group/m-p/782782#M277163</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2014-11-06T18:05:48Z</dc:date>
    </item>
    <item>
      <title>Re: Hide Columns in Straight Table depending on Cycle Group</title>
      <link>https://community.qlik.com/t5/QlikView/Hide-Columns-in-Straight-Table-depending-on-Cycle-Group/m-p/782783#M277164</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks! I tried the following and it doesn't work:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=IF(GetCurrentField('MyCycleBox')='bike',if(aggr(rank(sum(bike.sales)),bike.sales)&amp;lt;=10,bike.sales),NULL()) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you give me a short example .qvw which is working with your solution?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many Thanks,&lt;/P&gt;&lt;P&gt;Harry&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Nov 2014 19:33:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Hide-Columns-in-Straight-Table-depending-on-Cycle-Group/m-p/782783#M277164</guid>
      <dc:creator />
      <dc:date>2014-11-06T19:33:10Z</dc:date>
    </item>
    <item>
      <title>Re: Hide Columns in Straight Table depending on Cycle Group</title>
      <link>https://community.qlik.com/t5/QlikView/Hide-Columns-in-Straight-Table-depending-on-Cycle-Group/m-p/782784#M277165</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try using square brackets instead:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;=IF(GetCurrentField([MyCycleBox])='bike',if(aggr(rank(sum(bike.sales)),bike.sales)&amp;lt;=10,bike.sales),NULL())&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Nov 2014 01:18:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Hide-Columns-in-Straight-Table-depending-on-Cycle-Group/m-p/782784#M277165</guid>
      <dc:creator>JonnyPoole</dc:creator>
      <dc:date>2014-11-07T01:18:14Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Hide Columns in Straight Table depending on Cycle Group</title>
      <link>https://community.qlik.com/t5/QlikView/Hide-Columns-in-Straight-Table-depending-on-Cycle-Group/m-p/782785#M277166</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;attached is an example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i think square brackets is the issue, but the remaining syntax in your expression may yield other issues, if it doesn't work, make it a real simple expression and then add to the expression incrementally (testing each time) until you get it doing the aggr() , rank() etc... the way you want.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Nov 2014 01:29:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Hide-Columns-in-Straight-Table-depending-on-Cycle-Group/m-p/782785#M277166</guid>
      <dc:creator>JonnyPoole</dc:creator>
      <dc:date>2014-11-07T01:29:31Z</dc:date>
    </item>
    <item>
      <title>Re: Hide Columns in Straight Table depending on Cycle Group</title>
      <link>https://community.qlik.com/t5/QlikView/Hide-Columns-in-Straight-Table-depending-on-Cycle-Group/m-p/782786#M277167</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Many thanks Jonathan!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your example is working great and I solved my problem!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks again,&lt;/P&gt;&lt;P&gt;Harry&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Nov 2014 11:07:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Hide-Columns-in-Straight-Table-depending-on-Cycle-Group/m-p/782786#M277167</guid>
      <dc:creator />
      <dc:date>2014-11-07T11:07:00Z</dc:date>
    </item>
  </channel>
</rss>

