<?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: List box - Selectors help in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/List-box-Selectors-help/m-p/898554#M312615</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I try to avoid these nested ifs, the impact varies with the amount of data and two of those nested if's won't have that much effect, but I'm guessing there are more then those three? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Next to performance, there is also maintainbility. You could have the mapping load in an easy to maintain excel file&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See also&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-blogpost/4267"&gt;Data Cleansing&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 07 Jul 2015 11:41:20 GMT</pubDate>
    <dc:creator>stigchel</dc:creator>
    <dc:date>2015-07-07T11:41:20Z</dc:date>
    <item>
      <title>List box - Selectors help</title>
      <link>https://community.qlik.com/t5/QlikView/List-box-Selectors-help/m-p/898547#M312608</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a table containing rows of different brands eg:-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Brand1&lt;/P&gt;&lt;P&gt;Brand2&lt;/P&gt;&lt;P&gt;Brand3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When doing a list box for brands I see all brands, but I would like to group Brand1 and Brand2 as 'Education' and Brand3 as 'Games'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can anyone help. Apologies if I haven't given all the information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;M &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jul 2015 11:15:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-box-Selectors-help/m-p/898547#M312608</guid>
      <dc:creator>qlikmpate0</dc:creator>
      <dc:date>2015-07-07T11:15:54Z</dc:date>
    </item>
    <item>
      <title>Re: List box - Selectors help</title>
      <link>https://community.qlik.com/t5/QlikView/List-box-Selectors-help/m-p/898548#M312609</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use Below Expression to create list box&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF(Brand = 'Brand1' or Brand = 'Brand2', 'Education', If(Brand = 'Brand3', 'Games'))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jul 2015 11:20:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-box-Selectors-help/m-p/898548#M312609</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2015-07-07T11:20:05Z</dc:date>
    </item>
    <item>
      <title>Re: List box - Selectors help</title>
      <link>https://community.qlik.com/t5/QlikView/List-box-Selectors-help/m-p/898549#M312610</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD *, If(match(Brand,'Brand3'), 'Games', 'Education') as Category&amp;nbsp; Inline [&lt;/P&gt;&lt;P&gt;Brand&lt;/P&gt;&lt;P&gt;Brand1&lt;/P&gt;&lt;P&gt;Brand2&lt;/P&gt;&lt;P&gt;Brand3&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jul 2015 11:22:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-box-Selectors-help/m-p/898549#M312610</guid>
      <dc:creator>senpradip007</dc:creator>
      <dc:date>2015-07-07T11:22:04Z</dc:date>
    </item>
    <item>
      <title>Re: List box - Selectors help</title>
      <link>https://community.qlik.com/t5/QlikView/List-box-Selectors-help/m-p/898550#M312611</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can do this best in load script e.g. using a mapping load, something like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MyMap:&lt;/P&gt;&lt;P&gt;Mapping load [From, To&lt;/P&gt;&lt;P&gt;Brand1, Education&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;Brand2, Education&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;Brand3, Games&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;];&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;Load &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;....&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;Brand&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;Applymap('&lt;SPAN style="font-size: 13.3333330154419px;"&gt;MyMap&lt;/SPAN&gt;',Brand) as MyGroup&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;....&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;From Source&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jul 2015 11:24:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-box-Selectors-help/m-p/898550#M312611</guid>
      <dc:creator>stigchel</dc:creator>
      <dc:date>2015-07-07T11:24:25Z</dc:date>
    </item>
    <item>
      <title>Re: List box - Selectors help</title>
      <link>https://community.qlik.com/t5/QlikView/List-box-Selectors-help/m-p/898551#M312612</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use expression in list box&lt;/P&gt;&lt;P&gt;=if(brand='Brand1' or brand='Brand2', 'Education', 'Games')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jul 2015 11:27:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-box-Selectors-help/m-p/898551#M312612</guid>
      <dc:creator>florentina_doga</dc:creator>
      <dc:date>2015-07-07T11:27:31Z</dc:date>
    </item>
    <item>
      <title>Re: List box - Selectors help</title>
      <link>https://community.qlik.com/t5/QlikView/List-box-Selectors-help/m-p/898552#M312613</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;would this be slower?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jul 2015 11:31:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-box-Selectors-help/m-p/898552#M312613</guid>
      <dc:creator>qlikmpate0</dc:creator>
      <dc:date>2015-07-07T11:31:05Z</dc:date>
    </item>
    <item>
      <title>Re: List box - Selectors help</title>
      <link>https://community.qlik.com/t5/QlikView/List-box-Selectors-help/m-p/898553#M312614</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If I add it into the script it will be quicker?&amp;nbsp; the added complication Ihave is that I'm using and ApplyMap to get the initial brand name too.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jul 2015 11:32:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-box-Selectors-help/m-p/898553#M312614</guid>
      <dc:creator>qlikmpate0</dc:creator>
      <dc:date>2015-07-07T11:32:10Z</dc:date>
    </item>
    <item>
      <title>Re: List box - Selectors help</title>
      <link>https://community.qlik.com/t5/QlikView/List-box-Selectors-help/m-p/898554#M312615</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I try to avoid these nested ifs, the impact varies with the amount of data and two of those nested if's won't have that much effect, but I'm guessing there are more then those three? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Next to performance, there is also maintainbility. You could have the mapping load in an easy to maintain excel file&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See also&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-blogpost/4267"&gt;Data Cleansing&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jul 2015 11:41:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-box-Selectors-help/m-p/898554#M312615</guid>
      <dc:creator>stigchel</dc:creator>
      <dc:date>2015-07-07T11:41:20Z</dc:date>
    </item>
  </channel>
</rss>

