<?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: ListBox Set Expression in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/ListBox-Set-Expression/m-p/1093892#M363480</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Amazing.. Sunny, The Rajini &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;Thank you so much.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It worked..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 11 Apr 2016 16:06:18 GMT</pubDate>
    <dc:creator>Saravanan_Desingh</dc:creator>
    <dc:date>2016-04-11T16:06:18Z</dc:date>
    <item>
      <title>ListBox Set Expression</title>
      <link>https://community.qlik.com/t5/QlikView/ListBox-Set-Expression/m-p/1093890#M363478</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a situation.&lt;/P&gt;&lt;P&gt;I have table like below. This is only sample. I have multiple entries.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" width="120"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="xl63" height="17" width="52"&gt;Sector&lt;/TD&gt;&lt;TD class="xl63" style="border-left: none;" width="68"&gt;Header&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl64" height="17" style="border-top: none;"&gt;NAM&lt;/TD&gt;&lt;TD class="xl65" style="border-top: none; border-left: none;"&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl64" height="17" style="border-top: none;"&gt;ASPAC&lt;/TD&gt;&lt;TD class="xl65" style="border-top: none; border-left: none;"&gt;X&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl64" height="17" style="border-top: none;"&gt;EMEA&lt;/TD&gt;&lt;TD class="xl65" style="border-top: none; border-left: none;"&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl64" height="17" style="border-top: none;"&gt;LATAM&lt;/TD&gt;&lt;TD class="xl65" style="border-top: none; border-left: none;"&gt;X&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl64" height="17" style="border-top: none;"&gt;ASPAC&lt;/TD&gt;&lt;TD class="xl65" style="border-top: none; border-left: none;"&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl64" height="17" style="border-top: none;"&gt;EMEA&lt;/TD&gt;&lt;TD class="xl65" style="border-top: none; border-left: none;"&gt;X&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl64" height="17" style="border-top: none;"&gt;NAM&lt;/TD&gt;&lt;TD class="xl65" style="border-top: none; border-left: none;"&gt;X&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a ListBox with expression : =If(Match(Sector,'ASPAC','EMEA','NAM','MEXICO-S','DIGITAL'),Sector &amp;amp; '--' &amp;amp; Header)&lt;/P&gt;&lt;P&gt;This results me something like below:&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width: 148px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="xl63" height="17" width="148"&gt;ASPAC--X&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl63" height="17"&gt;ASPAC--&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl63" height="17"&gt;EMEA--X&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl63" height="17"&gt;EMEA--&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl63" height="17"&gt;NAM--X&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl63" height="17"&gt;NAM--&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl63" height="17"&gt;MEXICO-S--X&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl63" height="17"&gt;&lt;P&gt;DIGITAL--X&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;The Header field has X's and NULL's.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to display only Header with X's.&lt;/P&gt;&lt;P&gt;I have tried below expression, but could not achieve any.&lt;/P&gt;&lt;P&gt; =If(Match(Sector,'ASPAC','EMEA','NAM','MEXICO-S','DIGITAL'),Sector &amp;amp; '--' &amp;amp; FirstSorterValue(Header,-Ord(Header)))&lt;/P&gt;&lt;P&gt;=If(Match(Sector,'ASPAC','EMEA','NAM','MEXICO-S','DIGITAL'),Sector &amp;amp; '--' &amp;amp; MaxString({&amp;lt;Header={'X'}&amp;gt;}Header))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any advise please..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Apr 2016 16:01:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ListBox-Set-Expression/m-p/1093890#M363478</guid>
      <dc:creator>Saravanan_Desingh</dc:creator>
      <dc:date>2016-04-11T16:01:28Z</dc:date>
    </item>
    <item>
      <title>Re: ListBox Set Expression</title>
      <link>https://community.qlik.com/t5/QlikView/ListBox-Set-Expression/m-p/1093891#M363479</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=Aggr(Only({1&amp;lt;Header = {'X'}&amp;gt;} Sector &amp;amp; '--' &amp;amp; Header), Sector)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/121242_Capture.PNG" style="height: auto;" /&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Apr 2016 16:04:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ListBox-Set-Expression/m-p/1093891#M363479</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-04-11T16:04:17Z</dc:date>
    </item>
    <item>
      <title>Re: ListBox Set Expression</title>
      <link>https://community.qlik.com/t5/QlikView/ListBox-Set-Expression/m-p/1093892#M363480</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Amazing.. Sunny, The Rajini &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;Thank you so much.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It worked..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Apr 2016 16:06:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ListBox-Set-Expression/m-p/1093892#M363480</guid>
      <dc:creator>Saravanan_Desingh</dc:creator>
      <dc:date>2016-04-11T16:06:18Z</dc:date>
    </item>
    <item>
      <title>Re: ListBox Set Expression</title>
      <link>https://community.qlik.com/t5/QlikView/ListBox-Set-Expression/m-p/1093893#M363481</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunny,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I just changed a bit on this to list all the Values. It looks like, it returns only the Selected.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;=Aggr(Only({&lt;SPAN style="text-decoration: underline;"&gt;1&lt;/SPAN&gt;&amp;lt;Header = {'X'}&amp;gt;} Sector &amp;amp; '--' &amp;amp; Header), Sector)&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Apr 2016 16:12:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ListBox-Set-Expression/m-p/1093893#M363481</guid>
      <dc:creator>Saravanan_Desingh</dc:creator>
      <dc:date>2016-04-11T16:12:30Z</dc:date>
    </item>
    <item>
      <title>Re: ListBox Set Expression</title>
      <link>https://community.qlik.com/t5/QlikView/ListBox-Set-Expression/m-p/1093894#M363482</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What did you change?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Apr 2016 16:13:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ListBox-Set-Expression/m-p/1093894#M363482</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-04-11T16:13:57Z</dc:date>
    </item>
    <item>
      <title>Re: ListBox Set Expression</title>
      <link>https://community.qlik.com/t5/QlikView/ListBox-Set-Expression/m-p/1093895#M363483</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunny,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Added 1 to&amp;nbsp; the Expression instead of $.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Apr 2016 16:14:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ListBox-Set-Expression/m-p/1093895#M363483</guid>
      <dc:creator>Saravanan_Desingh</dc:creator>
      <dc:date>2016-04-11T16:14:39Z</dc:date>
    </item>
    <item>
      <title>Re: ListBox Set Expression</title>
      <link>https://community.qlik.com/t5/QlikView/ListBox-Set-Expression/m-p/1093896#M363484</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P class=""&gt;Hahahaha okay... I did update that in my response when I attached the sample &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Apr 2016 16:15:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ListBox-Set-Expression/m-p/1093896#M363484</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-04-11T16:15:54Z</dc:date>
    </item>
    <item>
      <title>Re: ListBox Set Expression</title>
      <link>https://community.qlik.com/t5/QlikView/ListBox-Set-Expression/m-p/1093897#M363485</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm sorry. It was there in your code. As I have typed it, I could have missed that one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry again... I over looked it..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Apr 2016 16:16:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ListBox-Set-Expression/m-p/1093897#M363485</guid>
      <dc:creator>Saravanan_Desingh</dc:creator>
      <dc:date>2016-04-11T16:16:42Z</dc:date>
    </item>
    <item>
      <title>Re: ListBox Set Expression</title>
      <link>https://community.qlik.com/t5/QlikView/ListBox-Set-Expression/m-p/1093898#M363486</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oh ok sure..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Apr 2016 16:17:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ListBox-Set-Expression/m-p/1093898#M363486</guid>
      <dc:creator>Saravanan_Desingh</dc:creator>
      <dc:date>2016-04-11T16:17:17Z</dc:date>
    </item>
    <item>
      <title>Re: ListBox Set Expression</title>
      <link>https://community.qlik.com/t5/QlikView/ListBox-Set-Expression/m-p/1093899#M363487</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No sorries my friend. I did add it at a later point. So totally not your mistake &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Apr 2016 16:17:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ListBox-Set-Expression/m-p/1093899#M363487</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-04-11T16:17:29Z</dc:date>
    </item>
  </channel>
</rss>

