<?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: Using rank for conditional show in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Using-rank-for-conditional-show/m-p/1030005#M943751</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Aaron, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That's an absolutely perfect solution - thank you so much for your help! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Makes complete sense, and means I can stop messing round with my wildly inefficient ranking system! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again, &lt;/P&gt;&lt;P&gt;Jess&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 19 Jan 2016 16:46:06 GMT</pubDate>
    <dc:creator>jessica_webb</dc:creator>
    <dc:date>2016-01-19T16:46:06Z</dc:date>
    <item>
      <title>Using rank for conditional show</title>
      <link>https://community.qlik.com/t5/QlikView/Using-rank-for-conditional-show/m-p/1030000#M943742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ultimately, I want to create QV reports displayed on dynamic selections.&lt;/P&gt;&lt;P&gt;I've thought long and hard about how to do this, and think I might have a possible solution, but I'm struggling to implement it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The selections will be made in a list box (which must remain in alphabetical order):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;VALUES&lt;/P&gt;&lt;P&gt;A&lt;/P&gt;&lt;P&gt;B&lt;/P&gt;&lt;P&gt;C&lt;/P&gt;&lt;P&gt;D&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So far, I have come up with the use of RANK to get where I need.&lt;/P&gt;&lt;P&gt;So, if I use the expression&lt;/P&gt;&lt;P&gt;IF(GetSelectedCount(VALUES)&amp;gt;=1, RANK(VALUES))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then selecting A, C and D gives me&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" style="border: 1px solid #000000; width: 100%;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;VALUES&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;RANK&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;A&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;C&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;D&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;3&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Selecting B and D gives me&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" style="border: 1px solid #000000; width: 100%;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;VALUES&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;RANK&lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;B&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;D&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, what I want to do, is use this dynamic 'Rank value' to conditionally show either an expression or a dimension.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried&lt;/P&gt;&lt;P&gt;(VALUES='A' and IF(GetSelectedCount(VALUES)&amp;gt;=1, RANK(VALUES))=1)&lt;/P&gt;&lt;P&gt;for an expression that specifies VALUES 'A' through set analysis, and&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;(VALUES='B' and IF(GetSelectedCount(VALUES)&amp;gt;=1, RANK(VALUES))=1) &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;for an expression that specifies VALUES 'B' through set analysis... etc&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;What I would expect (or hope!) from this, is for the first selection shown (selecting A, C and D)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;is that only the expression for VALUES A to work&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;And for the second selection shown (selecting B and D)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;only the expression for VALUES B to work&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;What actually happens is nothing shows... If I ONLY select VALUES A, then VALUES A expression works. Or, if I ONLY select VALUES B, then VALUES B expression works. But if I select more than one VALUES, then 'All expressions disabled'.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;I would like to be able to change the conditional expression for different charts, so that in some cases the expression only shows if the VALUES is 2nd, or 3rd, or 4th selected in the list... So it will (I presume) need to be based on some kind of ranking.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Some help with this, or alternative suggestions, would be greatly appreciated! &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Jess &lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jan 2016 15:30:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-rank-for-conditional-show/m-p/1030000#M943742</guid>
      <dc:creator>jessica_webb</dc:creator>
      <dc:date>2016-01-19T15:30:44Z</dc:date>
    </item>
    <item>
      <title>Re: Using rank for conditional show</title>
      <link>https://community.qlik.com/t5/QlikView/Using-rank-for-conditional-show/m-p/1030001#M943743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe just use conditional expressions like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//for A Expression&lt;/P&gt;&lt;P&gt;=If( Minstring( VALUES) ='A',1,0)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for B expression&lt;/P&gt;&lt;P&gt;=If( Minstring( VALUES) ='B',1,0)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;etc.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jan 2016 15:43:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-rank-for-conditional-show/m-p/1030001#M943743</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2016-01-19T15:43:28Z</dc:date>
    </item>
    <item>
      <title>Re: Using rank for conditional show</title>
      <link>https://community.qlik.com/t5/QlikView/Using-rank-for-conditional-show/m-p/1030002#M943744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Stefan, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your reply. This works for the example I've given, however it's not quite the solution I need. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I should have explained further, but I want to then extend the expression in other charts, so that if a VALUES is second in the list, then only that expression shows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So to take my first example (selecting A, C and D) how would I make only Cs expression show, or Ds... Basically, I want want a conditional show when a VALUES is at Nth position is the selected list. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;BR /&gt;Jess&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jan 2016 15:49:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-rank-for-conditional-show/m-p/1030002#M943744</guid>
      <dc:creator>jessica_webb</dc:creator>
      <dc:date>2016-01-19T15:49:53Z</dc:date>
    </item>
    <item>
      <title>Re: Using rank for conditional show</title>
      <link>https://community.qlik.com/t5/QlikView/Using-rank-for-conditional-show/m-p/1030003#M943748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To geht the second value:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=Subfield( Concat( DISTINCT VALUES, '|'),'|',2) &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jan 2016 16:28:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-rank-for-conditional-show/m-p/1030003#M943748</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2016-01-19T16:28:51Z</dc:date>
    </item>
    <item>
      <title>Re: Using rank for conditional show</title>
      <link>https://community.qlik.com/t5/QlikView/Using-rank-for-conditional-show/m-p/1030004#M943750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jess,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could use either the Index or the SubField functions depending on the nature of your field "Values". SubField is probably safer as it should accept anything in the VALUES field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you used:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt;"&gt;SubField&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;(&lt;SPAN style="color: #0000ff;"&gt;Concat&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;Values&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;, '|'), '|', 2) = 'C' &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;This would only show your chart if 'C' was the second selected value from your VALUES list. The delimiter I've used ('|') is arbitrary, you could use anything that fitted as long as it wasn't present in your VALUES field. The concat function is joining all your available selections together, then SubField splits it back out to check what the second "entry" is essentially.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;Happy to explain more if that doesn't make sense, unsure if that's exactly what you're looking for..?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jan 2016 16:31:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-rank-for-conditional-show/m-p/1030004#M943750</guid>
      <dc:creator>morganaaron</dc:creator>
      <dc:date>2016-01-19T16:31:54Z</dc:date>
    </item>
    <item>
      <title>Re: Using rank for conditional show</title>
      <link>https://community.qlik.com/t5/QlikView/Using-rank-for-conditional-show/m-p/1030005#M943751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Aaron, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That's an absolutely perfect solution - thank you so much for your help! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Makes complete sense, and means I can stop messing round with my wildly inefficient ranking system! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again, &lt;/P&gt;&lt;P&gt;Jess&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jan 2016 16:46:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-rank-for-conditional-show/m-p/1030005#M943751</guid>
      <dc:creator>jessica_webb</dc:creator>
      <dc:date>2016-01-19T16:46:06Z</dc:date>
    </item>
    <item>
      <title>Re: Using rank for conditional show</title>
      <link>https://community.qlik.com/t5/QlikView/Using-rank-for-conditional-show/m-p/1030006#M943752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Stefan, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you. Just needed that additional ='C' that Aaron mentioned below, and it'w working perfectly. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again,&lt;/P&gt;&lt;P&gt;Jess&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jan 2016 16:47:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-rank-for-conditional-show/m-p/1030006#M943752</guid>
      <dc:creator>jessica_webb</dc:creator>
      <dc:date>2016-01-19T16:47:16Z</dc:date>
    </item>
    <item>
      <title>Re: Using rank for conditional show</title>
      <link>https://community.qlik.com/t5/QlikView/Using-rank-for-conditional-show/m-p/1030007#M943754</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Aaron, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry - quick further question...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there anyway I could use the expression you suggested in set analysis? So for example, if I only wanted to count the results of a particular value, rather than saying:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Count({&amp;lt;VALUES={'C'}&amp;gt;} RESULTS)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;have the expression pick the first/second/thrid... value from a selected list, something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Count({&amp;lt;VALUES={'&lt;SPAN style="font-size: 10pt; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #0000ff;"&gt;SubField&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;(&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit; color: #0000ff;"&gt;Concat&lt;/SPAN&gt;(&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit; color: #800000;"&gt;Values&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;, '|'), '|', 1)&lt;/SPAN&gt;'}&amp;gt;} RESULTS) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but that actually works...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Jess&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jan 2016 10:11:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-rank-for-conditional-show/m-p/1030007#M943754</guid>
      <dc:creator>jessica_webb</dc:creator>
      <dc:date>2016-01-20T10:11:58Z</dc:date>
    </item>
    <item>
      <title>Re: Using rank for conditional show</title>
      <link>https://community.qlik.com/t5/QlikView/Using-rank-for-conditional-show/m-p/1030008#M943756</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Count({&amp;lt;VALUES={'$(=&lt;SPAN style="color: #0000ff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10pt;"&gt;SubField&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10pt;"&gt;(&lt;SPAN style="color: #0000ff; font-family: inherit; font-size: 13.33px; font-style: inherit; font-weight: inherit;"&gt;Concat&lt;/SPAN&gt;(&lt;SPAN style="color: #800000; font-family: inherit; font-size: 13.33px; font-style: inherit; font-weight: inherit;"&gt;Values&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10pt;"&gt;, '|'), '|', 1))&lt;/SPAN&gt;'}&amp;gt;} RESULTS)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jan 2016 10:59:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-rank-for-conditional-show/m-p/1030008#M943756</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2016-01-20T10:59:04Z</dc:date>
    </item>
    <item>
      <title>Re: Using rank for conditional show</title>
      <link>https://community.qlik.com/t5/QlikView/Using-rank-for-conditional-show/m-p/1030009#M943758</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;EDIT:&lt;/P&gt;&lt;P&gt;Hi Stefan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #575757; text-decoration: line-through;"&gt;It doesn't seem to like that - SubField not turning blue as expected, and |'), and onwards underlined red.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry, scrap that - it's working after all! It didn't like it when I copied and pasted the expression, but typing it in seems ok! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jess&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jan 2016 11:07:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-rank-for-conditional-show/m-p/1030009#M943758</guid>
      <dc:creator>jessica_webb</dc:creator>
      <dc:date>2016-01-20T11:07:21Z</dc:date>
    </item>
    <item>
      <title>Re: Using rank for conditional show</title>
      <link>https://community.qlik.com/t5/QlikView/Using-rank-for-conditional-show/m-p/1030010#M943760</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt;"&gt;Count&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;({&amp;lt;&lt;SPAN style="color: #800000;"&gt;VALUES&lt;/SPAN&gt;={&lt;SPAN style="color: #800000;"&gt;"$(=SubField(Concat(VALUES, '|'), '|', 2))"&lt;/SPAN&gt;}&amp;gt;} &lt;SPAN style="color: #800000;"&gt;RESULTS&lt;/SPAN&gt;) &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Should also do it - Stefan's formula is correct - this isn't an intended way to write it (" isn't used for that purpose here) but the syntax checker should like this if you're fussy about the underlines!&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jan 2016 11:17:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-rank-for-conditional-show/m-p/1030010#M943760</guid>
      <dc:creator>morganaaron</dc:creator>
      <dc:date>2016-01-20T11:17:35Z</dc:date>
    </item>
    <item>
      <title>Re: Using rank for conditional show</title>
      <link>https://community.qlik.com/t5/QlikView/Using-rank-for-conditional-show/m-p/1030011#M943762</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Aaron. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It was kind of working without the quotation marks (in fact I'd mistakenly typed it without even single quote marks at the beginning/end) - but the font was grey italic (like when you type a variable name), and I kept getting a 'Exceeded allocated memory' warning.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But with the quotation marks it's working without any issues, so thanks for the edit!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jess&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jan 2016 11:24:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-rank-for-conditional-show/m-p/1030011#M943762</guid>
      <dc:creator>jessica_webb</dc:creator>
      <dc:date>2016-01-20T11:24:09Z</dc:date>
    </item>
  </channel>
</rss>

