<?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: Is it possible to divide a listbox into two? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Is-it-possible-to-divide-a-listbox-into-two/m-p/539768#M201711</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you again for the advice.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 21 Jan 2014 02:37:27 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-01-21T02:37:27Z</dc:date>
    <item>
      <title>Is it possible to divide a listbox into two?</title>
      <link>https://community.qlik.com/t5/QlikView/Is-it-possible-to-divide-a-listbox-into-two/m-p/539761#M201704</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have a list box which contains over 200 item names and half of them start with 'A' and the others start with 'B'&lt;/P&gt;&lt;P&gt;I tried to divide it using expesion: &lt;/P&gt;&lt;P&gt; listbox1...if(index(ItemName,'A')=1,ItemName,Null())&lt;/P&gt;&lt;P&gt; listbox2...if(index(ItemName,'B')=1,ItemName,Null())&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I could divide the listbox, but When I choose items from listbox1,&lt;/P&gt;&lt;P&gt;I can't choose from items from listbox2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any way to keep the selection?&lt;/P&gt;&lt;P&gt;Or is there any other way to divide the listbos?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried alternate state too, but it doesn't work.&lt;/P&gt;&lt;P&gt;Maybe because what I want to choose is items in same columns in same pivot table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jan 2014 01:10:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Is-it-possible-to-divide-a-listbox-into-two/m-p/539761#M201704</guid>
      <dc:creator />
      <dc:date>2014-01-21T01:10:34Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to divide a listbox into two?</title>
      <link>https://community.qlik.com/t5/QlikView/Is-it-possible-to-divide-a-listbox-into-two/m-p/539762#M201705</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can do it in the load script. something like&lt;/P&gt;&lt;P&gt;load&lt;/P&gt;&lt;P&gt;ItemName,&lt;/P&gt;&lt;P&gt;if(index(ItemName,'A')=1,ItemName,Null()) as ItemName_A&lt;/P&gt;&lt;P&gt;if(index(ItemName,'B')=1,ItemName,Null()) as ItemName_B&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;This way you will have two new fields you can use.&lt;/P&gt;&lt;P&gt; Hope that helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jan 2014 01:25:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Is-it-possible-to-divide-a-listbox-into-two/m-p/539762#M201705</guid>
      <dc:creator>iktrayanov</dc:creator>
      <dc:date>2014-01-21T01:25:03Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to divide a listbox into two?</title>
      <link>https://community.qlik.com/t5/QlikView/Is-it-possible-to-divide-a-listbox-into-two/m-p/539763#M201706</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you, Ivan. but I don't want to really devide the items.&lt;/P&gt;&lt;P&gt;I just want to show in two different listbox and keep them as one group of items.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My listbox and chart are like below.&lt;/P&gt;&lt;P&gt;I want to choose A_xxx and B_xxx, but when I devide the listbox, I can choose only A_xxx or B_xxx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;lt;chart&amp;gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;item　　　price&lt;/P&gt;&lt;P&gt;A_001　　2000&lt;/P&gt;&lt;P&gt;A_002　　1500&lt;/P&gt;&lt;P&gt;A_003　　1300&lt;/P&gt;&lt;P&gt;B_001　　1300&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;lt;Current listbox&amp;gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;A_001&lt;/P&gt;&lt;P&gt;A_002&lt;/P&gt;&lt;P&gt;A_003&lt;/P&gt;&lt;P&gt;A_004&lt;/P&gt;&lt;P&gt;B_001&lt;/P&gt;&lt;P&gt;B_002&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;lt;listbox I want to make&amp;gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;listbox1:&lt;/P&gt;&lt;P&gt;A_001&lt;/P&gt;&lt;P&gt;A_002&lt;/P&gt;&lt;P&gt;A_003&lt;/P&gt;&lt;P&gt;A_004&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;listbox2:&lt;/P&gt;&lt;P&gt;B_001&lt;/P&gt;&lt;P&gt;B_002&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jan 2014 01:50:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Is-it-possible-to-divide-a-listbox-into-two/m-p/539763#M201706</guid>
      <dc:creator />
      <dc:date>2014-01-21T01:50:38Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to divide a listbox into two?</title>
      <link>https://community.qlik.com/t5/QlikView/Is-it-possible-to-divide-a-listbox-into-two/m-p/539764#M201707</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Listbox 1:&lt;/P&gt;&lt;P&gt;=IF(WILDMATCH([item],'A*'),[item])&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Listbox2:&lt;/P&gt;&lt;P&gt;=IF(WILDMATCH([item],'B*'),[item])&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Attachment for reference.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jan 2014 02:13:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Is-it-possible-to-divide-a-listbox-into-two/m-p/539764#M201707</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-01-21T02:13:27Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Is it possible to divide a listbox into two?</title>
      <link>https://community.qlik.com/t5/QlikView/Is-it-possible-to-divide-a-listbox-into-two/m-p/539765#M201708</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The ITEMNAME field associated to data model so when ever you select ITEMNAME-A List box the data will be filtered out based on your selection. So you can't select both LB values at the same time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is the Idea:&lt;/P&gt;&lt;P&gt;Please create the 2 fields in the script level with out attaching to data model (Islands).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please use "Toggle Select" action on these 2 list boxes. Please find the attached qvw for reference.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jan 2014 02:19:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Is-it-possible-to-divide-a-listbox-into-two/m-p/539765#M201708</guid>
      <dc:creator />
      <dc:date>2014-01-21T02:19:26Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to divide a listbox into two?</title>
      <link>https://community.qlik.com/t5/QlikView/Is-it-possible-to-divide-a-listbox-into-two/m-p/539766#M201709</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you dathu.qv,&lt;/P&gt;&lt;P&gt;This is quite similar to what I want to do. I'll try to adjust it to my qvw. &lt;/P&gt;&lt;P&gt;Thank you very much!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jan 2014 02:30:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Is-it-possible-to-divide-a-listbox-into-two/m-p/539766#M201709</guid>
      <dc:creator />
      <dc:date>2014-01-21T02:30:35Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to divide a listbox into two?</title>
      <link>https://community.qlik.com/t5/QlikView/Is-it-possible-to-divide-a-listbox-into-two/m-p/539767#M201710</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please make sure the expression working correctly in your trigger if multiple values selected in one List box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;= '(' &amp;amp; getfieldselection(ITEMNAME_A, '|') &amp;amp; ')'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jan 2014 02:34:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Is-it-possible-to-divide-a-listbox-into-two/m-p/539767#M201710</guid>
      <dc:creator />
      <dc:date>2014-01-21T02:34:00Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to divide a listbox into two?</title>
      <link>https://community.qlik.com/t5/QlikView/Is-it-possible-to-divide-a-listbox-into-two/m-p/539768#M201711</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you again for the advice.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jan 2014 02:37:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Is-it-possible-to-divide-a-listbox-into-two/m-p/539768#M201711</guid>
      <dc:creator />
      <dc:date>2014-01-21T02:37:27Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to divide a listbox into two?</title>
      <link>https://community.qlik.com/t5/QlikView/Is-it-possible-to-divide-a-listbox-into-two/m-p/539769#M201712</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dathu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need one help from you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have two list box, Year and Month. if i am selecting year, all value of month is coming in Month list box based on year. but when i am selecting Month(any suppose Jan,feb),so year filter is going off and year is now getting selected based on Month.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want to select Year(suppose 2013 and 2014)&amp;nbsp; and in Month(suppose Jan,Aug) and want to populate the data for selected year and selected month only but filtering is not happening based on both.its taking either month or year.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please suggest what i have to do..?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ratan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Feb 2014 10:19:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Is-it-possible-to-divide-a-listbox-into-two/m-p/539769#M201712</guid>
      <dc:creator />
      <dc:date>2014-02-10T10:19:10Z</dc:date>
    </item>
  </channel>
</rss>

