<?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 Listbox in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Listbox/m-p/658549#M475940</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Experts&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a listbox which shows all the values that are in my table exept for empty field. Is it possible to show the empty fields in the listbox, too? I would like to select the datasets that contain no values in this table through the listbox...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 26 Jun 2014 07:17:15 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-06-26T07:17:15Z</dc:date>
    <item>
      <title>Listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Listbox/m-p/658549#M475940</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Experts&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a listbox which shows all the values that are in my table exept for empty field. Is it possible to show the empty fields in the listbox, too? I would like to select the datasets that contain no values in this table through the listbox...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jun 2014 07:17:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Listbox/m-p/658549#M475940</guid>
      <dc:creator />
      <dc:date>2014-06-26T07:17:15Z</dc:date>
    </item>
    <item>
      <title>Re: Listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Listbox/m-p/658550#M475941</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Heinrich,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunataly not. You will have to assign a "value" to the blanks inside the script to be able to select them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For instance assign the word "NULL" to all the nulls and blanks and then you will be able to select them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt;Marius&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jun 2014 07:20:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Listbox/m-p/658550#M475941</guid>
      <dc:creator />
      <dc:date>2014-06-26T07:20:06Z</dc:date>
    </item>
    <item>
      <title>Re: Listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Listbox/m-p/658551#M475942</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in your list box at the end of the listed fields there is an item "Expression", click and write&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=If(IsNull(myfield) or Trim(myfield)='','---', myfield)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jun 2014 07:22:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Listbox/m-p/658551#M475942</guid>
      <dc:creator>alexandros17</dc:creator>
      <dc:date>2014-06-26T07:22:44Z</dc:date>
    </item>
    <item>
      <title>Re: Listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Listbox/m-p/658552#M475943</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You cannot show NULL value in the list object. You need to cast them as a "NULL" or "NA" to show in the list box. Below script may help you to achieve this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NullAsValue FieldName;&lt;/P&gt;&lt;P&gt;Set NullValue='NA'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jun 2014 07:23:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Listbox/m-p/658552#M475943</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-06-26T07:23:08Z</dc:date>
    </item>
    <item>
      <title>Re: Listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Listbox/m-p/658553#M475944</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in you script you have to wirte:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(isnull(myfield)=-1,'-',myfield) as FieldName&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;that means if you field is null you will set the value - and otherwise the regular value. if you do this you will find the - in your listbox.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;MT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jun 2014 07:32:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Listbox/m-p/658553#M475944</guid>
      <dc:creator />
      <dc:date>2014-06-26T07:32:00Z</dc:date>
    </item>
    <item>
      <title>Re: Listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Listbox/m-p/658554#M475945</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Satyadev&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your help &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;Do I have to connect it to a load statement? Like this? (The values in the table I am interested in are in 'Jobkriterium')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load *, NullAsValue Jobkriterium;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set NullValue='NA'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SQL SELECT bez as Jobkriterium,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; beznr as Jobkritnr,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; bezart&lt;/P&gt;&lt;P&gt;FROM EASY.divbez where&amp;nbsp; bezart = 9;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jun 2014 07:34:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Listbox/m-p/658554#M475945</guid>
      <dc:creator />
      <dc:date>2014-06-26T07:34:55Z</dc:date>
    </item>
    <item>
      <title>Re: Listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Listbox/m-p/658555#M475946</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Magdalena&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your help &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;I tried the following: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load *, if(isnull(Jobkriterium)=-1,'-',Jobkriterium) as Jobkriterium;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SQL SELECT bez as Jobkriterium,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; beznr as Jobkritnr,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; bezart&lt;/P&gt;&lt;P&gt;FROM EASY.divbez where&amp;nbsp; bezart = 9;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This did not work for me...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jun 2014 07:38:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Listbox/m-p/658555#M475946</guid>
      <dc:creator />
      <dc:date>2014-06-26T07:38:35Z</dc:date>
    </item>
    <item>
      <title>Re: Listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Listbox/m-p/658556#M475947</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;maybe first load your table from the database and then try loading the table again and use the if is send you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;MT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jun 2014 07:44:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Listbox/m-p/658556#M475947</guid>
      <dc:creator />
      <dc:date>2014-06-26T07:44:03Z</dc:date>
    </item>
    <item>
      <title>Re: Listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Listbox/m-p/658557#M475948</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you also have to make sure that the field is null and not empty. &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;MT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jun 2014 07:48:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Listbox/m-p/658557#M475948</guid>
      <dc:creator />
      <dc:date>2014-06-26T07:48:03Z</dc:date>
    </item>
    <item>
      <title>Re: Listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Listbox/m-p/658558#M475949</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use below if condition in your script:&lt;/P&gt;&lt;P&gt;if(len(Trim(YOUR_FIELD_NAME))&amp;gt;1,YOUR_FIELD_NAME,'BLANKS') AS YOUR_FIELD_NAME&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and Reload the Application. Use YOUR_FIELD_NAME&amp;nbsp; List Box, there you'll see the List Box with BLANKS as values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will work for you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Aviral&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jun 2014 07:48:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Listbox/m-p/658558#M475949</guid>
      <dc:creator>aveeeeeee7en</dc:creator>
      <dc:date>2014-06-26T07:48:45Z</dc:date>
    </item>
    <item>
      <title>Re: Listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Listbox/m-p/658559#M475950</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have to write the script outside of the load statement,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;NullAsValue Jobkriterium;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;Set NullValue='NA';&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;load *;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;SQL SELECT bez as Jobkriterium,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; beznr as Jobkritnr,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; bezart&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM EASY.divbez where&amp;nbsp; bezart = 9;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jun 2014 07:52:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Listbox/m-p/658559#M475950</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-06-26T07:52:47Z</dc:date>
    </item>
    <item>
      <title>Re: Listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Listbox/m-p/658560#M475951</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Cool! This one works, exept that it does not give me "NA" values. &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/cry.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jun 2014 07:58:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Listbox/m-p/658560#M475951</guid>
      <dc:creator />
      <dc:date>2014-06-26T07:58:44Z</dc:date>
    </item>
    <item>
      <title>Re: Listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Listbox/m-p/658561#M475952</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Allesandro&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank your for your help. &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;I am not sure if I enter the code at the right lace since it duplicates my values in the listbox. Do I enter it under the header 'formula'?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jun 2014 08:01:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Listbox/m-p/658561#M475952</guid>
      <dc:creator />
      <dc:date>2014-06-26T08:01:47Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Listbox/m-p/658562#M475953</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It means, specified field doesn't have NULL value. Attachment for your reference. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jun 2014 08:11:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Listbox/m-p/658562#M475953</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-06-26T08:11:16Z</dc:date>
    </item>
    <item>
      <title>Re: Listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Listbox/m-p/658563#M475954</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok. If I read the fields that are empty into a table it shows '-' what else could be in these fields? 0?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry for keeping you busy on this...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jun 2014 08:16:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Listbox/m-p/658563#M475954</guid>
      <dc:creator />
      <dc:date>2014-06-26T08:16:23Z</dc:date>
    </item>
    <item>
      <title>Re: Listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Listbox/m-p/658564#M475955</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In general tab of the listbox, in the "Field" at the bottom you find expression. Do not use the tab expression otherways as you said you have duplicated values&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jun 2014 08:22:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Listbox/m-p/658564#M475955</guid>
      <dc:creator>alexandros17</dc:creator>
      <dc:date>2014-06-26T08:22:12Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Listbox/m-p/658565#M475956</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If it is NULL, it will show '-' in tablebox. If you are using field in expression, for example Sales field has some null entry and if you use Sum(Sales) than it will give you 0. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jun 2014 08:22:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Listbox/m-p/658565#M475956</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-06-26T08:22:56Z</dc:date>
    </item>
    <item>
      <title>Re: Listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Listbox/m-p/658566#M475957</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;you need to assign the value for null to select them&lt;/P&gt;&lt;P&gt;just use&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;STRONG&gt;&lt;SPAN lang="EN-US" style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;NullAsValue&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN lang="EN-US" style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt; *;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;STRONG&gt;&lt;SPAN lang="EN-US" style="font-size: 9.0pt; font-family: 'Courier New'; color: blue;"&gt;SET&lt;/SPAN&gt;&lt;/STRONG&gt; &lt;STRONG&gt;&lt;EM&gt;&lt;SPAN lang="EN-US" style="font-size: 9.0pt; font-family: 'Courier New'; color: gray;"&gt;NullValue&lt;/SPAN&gt;&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN lang="EN-US" style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt; =&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-size: 9.0pt; font-family: 'Courier New'; color: maroon;"&gt;"NA"&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN lang="EN-US" style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;tablename:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN lang="EN-US" style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;Load&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN lang="EN-US" style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;....&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN lang="EN-US" style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;...&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN lang="EN-US" style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN lang="EN-US" style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jun 2014 08:32:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Listbox/m-p/658566#M475957</guid>
      <dc:creator />
      <dc:date>2014-06-26T08:32:14Z</dc:date>
    </item>
    <item>
      <title>Re: Listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Listbox/m-p/658567#M475958</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Use Nullasvalue concept and you will get the required output in the listbox&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;Ravi N.&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jun 2014 08:46:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Listbox/m-p/658567#M475958</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-06-26T08:46:06Z</dc:date>
    </item>
  </channel>
</rss>

