<?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 Change name inside a listbox in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Change-name-inside-a-listbox/m-p/326759#M581329</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Now if i select 1. the name projects behind the 2 disappears like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if 1 selected:&lt;/P&gt;&lt;P&gt;1. SP&lt;/P&gt;&lt;P&gt;2. -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If 2 selected:&lt;/P&gt;&lt;P&gt;1. -&lt;/P&gt;&lt;P&gt;2. Projects&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to keep the names even if the other one is selected.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 28 Dec 2011 14:05:17 GMT</pubDate>
    <dc:creator>pauldamen</dc:creator>
    <dc:date>2011-12-28T14:05:17Z</dc:date>
    <item>
      <title>Change name inside a listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Change-name-inside-a-listbox/m-p/326755#M581325</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have got a question which probably has a very simple answer. I have a listbox with the name Business Unit, under the listbox there are 2 options to select, 1 and 2. I want to change the 1 and 2 in the names of the business unit (SP and Projects). I can't seem to figure out how to do this without changing the 200000 lines in excel were the data comes from.&lt;/P&gt;&lt;P&gt;Can anyone help?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Paul &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Dec 2011 13:28:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Change-name-inside-a-listbox/m-p/326755#M581325</guid>
      <dc:creator>pauldamen</dc:creator>
      <dc:date>2011-12-28T13:28:32Z</dc:date>
    </item>
    <item>
      <title>Change name inside a listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Change-name-inside-a-listbox/m-p/326756#M581326</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;change the expression on the list box to the following, or in the second expression you can place it on the script for that field:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if([Business Unit]=1,'SP','Projects') &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if([Business Unit]=1,'SP','Projects') as 'Business Unit',&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Dec 2011 13:50:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Change-name-inside-a-listbox/m-p/326756#M581326</guid>
      <dc:creator />
      <dc:date>2011-12-28T13:50:02Z</dc:date>
    </item>
    <item>
      <title>Change name inside a listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Change-name-inside-a-listbox/m-p/326757#M581327</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot work great.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Only thing is if i select projects it will change the name of 1. (SP) also into projects, so it looks like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. projects&lt;/P&gt;&lt;P&gt;2. projects.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I clear selections it will change back but is there anything to avoid this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Dec 2011 13:56:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Change-name-inside-a-listbox/m-p/326757#M581327</guid>
      <dc:creator>pauldamen</dc:creator>
      <dc:date>2011-12-28T13:56:05Z</dc:date>
    </item>
    <item>
      <title>Change name inside a listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Change-name-inside-a-listbox/m-p/326758#M581328</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I do not understand what you mean.&lt;/P&gt;&lt;P&gt;From what I understood how you had it if you select 1 from the list box it displays only SP, if you select 2 it displays only projects.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The expression in the list box&lt;/P&gt;&lt;P&gt;if([Business Unit]=1,'SP',if([Business Unit]=2,'Projects')) &lt;/P&gt;&lt;P&gt;will change only the display of the list box. So if you use this expression and select SP, the current selection will show 1 as selected.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you change the field in the script, then while it is loading it will change all 1's to show SP and all 2's to show Projects.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Dec 2011 14:01:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Change-name-inside-a-listbox/m-p/326758#M581328</guid>
      <dc:creator />
      <dc:date>2011-12-28T14:01:50Z</dc:date>
    </item>
    <item>
      <title>Change name inside a listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Change-name-inside-a-listbox/m-p/326759#M581329</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Now if i select 1. the name projects behind the 2 disappears like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if 1 selected:&lt;/P&gt;&lt;P&gt;1. SP&lt;/P&gt;&lt;P&gt;2. -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If 2 selected:&lt;/P&gt;&lt;P&gt;1. -&lt;/P&gt;&lt;P&gt;2. Projects&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to keep the names even if the other one is selected.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Dec 2011 14:05:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Change-name-inside-a-listbox/m-p/326759#M581329</guid>
      <dc:creator>pauldamen</dc:creator>
      <dc:date>2011-12-28T14:05:17Z</dc:date>
    </item>
    <item>
      <title>Re: Change name inside a listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Change-name-inside-a-listbox/m-p/326760#M581330</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;oh, I meant change the listbox to display only the expression (In the General Tab, Field Dropdown, scroll to the botton of the list and select expression )&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Dec 2011 14:06:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Change-name-inside-a-listbox/m-p/326760#M581330</guid>
      <dc:creator />
      <dc:date>2011-12-28T14:06:36Z</dc:date>
    </item>
    <item>
      <title>Change name inside a listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Change-name-inside-a-listbox/m-p/326761#M581331</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; I'am sorry I don't understand which drop down you mean&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Dec 2011 14:10:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Change-name-inside-a-listbox/m-p/326761#M581331</guid>
      <dc:creator>pauldamen</dc:creator>
      <dc:date>2011-12-28T14:10:00Z</dc:date>
    </item>
    <item>
      <title>Re: Change name inside a listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Change-name-inside-a-listbox/m-p/326762#M581332</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG alt="Untitled.png" class="jive-image-thumbnail jive-image" onclick="" src="https://community.qlik.com/legacyfs/online/9920_Untitled.png" width="450" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Dec 2011 14:11:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Change-name-inside-a-listbox/m-p/326762#M581332</guid>
      <dc:creator />
      <dc:date>2011-12-28T14:11:18Z</dc:date>
    </item>
    <item>
      <title>Change name inside a listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Change-name-inside-a-listbox/m-p/326763#M581333</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Thanks it works!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Dec 2011 14:13:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Change-name-inside-a-listbox/m-p/326763#M581333</guid>
      <dc:creator>pauldamen</dc:creator>
      <dc:date>2011-12-28T14:13:15Z</dc:date>
    </item>
  </channel>
</rss>

