<?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: Putting Together List Boxes? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Putting-Together-List-Boxes/m-p/549160#M1136798</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can prepare a table at script consolidating those fields&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 11 Oct 2013 19:49:21 GMT</pubDate>
    <dc:creator>Clever_Anjos</dc:creator>
    <dc:date>2013-10-11T19:49:21Z</dc:date>
    <item>
      <title>Putting Together List Boxes?</title>
      <link>https://community.qlik.com/t5/QlikView/Putting-Together-List-Boxes/m-p/549159#M1136796</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't know if someone else has asked this, but is there a way to join List Boxes into on List Box? More specifically I have for list boxes showing delinquency amounts, labeled "0-30 Days", "31-60 days", "61-90 days" and "&amp;gt;90 days". Is there a way to have a list box just titled "Delinquencies" that has these 4 categories as options that connects to the data from these 4 boxes?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Oct 2013 19:43:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Putting-Together-List-Boxes/m-p/549159#M1136796</guid>
      <dc:creator />
      <dc:date>2013-10-11T19:43:04Z</dc:date>
    </item>
    <item>
      <title>Re: Putting Together List Boxes?</title>
      <link>https://community.qlik.com/t5/QlikView/Putting-Together-List-Boxes/m-p/549160#M1136798</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can prepare a table at script consolidating those fields&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Oct 2013 19:49:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Putting-Together-List-Boxes/m-p/549160#M1136798</guid>
      <dc:creator>Clever_Anjos</dc:creator>
      <dc:date>2013-10-11T19:49:21Z</dc:date>
    </item>
    <item>
      <title>Re: Putting Together List Boxes?</title>
      <link>https://community.qlik.com/t5/QlikView/Putting-Together-List-Boxes/m-p/549161#M1136800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How about turning your four list boxes into a single one, and prefixing each value with its category and a slash e.g. "0-30 Days" &amp;amp; "/" &amp;amp; "27", "0-30 Dats" &amp;amp; "/" &amp;amp; "28" etc.&lt;/P&gt;&lt;P&gt;Then enable the "Show as Tree View" option in ListBox-&amp;gt;Properties-&amp;gt;General.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Oct 2013 19:54:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Putting-Together-List-Boxes/m-p/549161#M1136800</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2013-10-11T19:54:01Z</dc:date>
    </item>
    <item>
      <title>Re: Putting Together List Boxes?</title>
      <link>https://community.qlik.com/t5/QlikView/Putting-Together-List-Boxes/m-p/549162#M1136802</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;If you have two date fields in your table, then the differences should between the two dates can be categorised like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FromDate,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ToDate,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(Num(ToDate - FromDate) &amp;gt; 90, '&amp;gt;90 days',&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(Num(ToDate - FromDate) &amp;gt;60 and Num(ToDate - FromDate) &amp;lt;= 90, '61-90 days',&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(Num(ToDate - FromDate) &amp;gt;30 and Num(ToDate - FromDate) &amp;lt;= 60, '31-60 days',&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(Num(ToDate - FromDate) &amp;gt;0 and Num(ToDate - FromDate) &amp;lt;= 30, '0-30 days', 'N/A')))) AS &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Delinquencies&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;FROM Data;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now use &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Delinquencies&lt;/SPAN&gt; field as List/Filter box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this is what you are expecting.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 Oct 2013 10:20:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Putting-Together-List-Boxes/m-p/549162#M1136802</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2013-10-12T10:20:21Z</dc:date>
    </item>
    <item>
      <title>Re: Putting Together List Boxes?</title>
      <link>https://community.qlik.com/t5/QlikView/Putting-Together-List-Boxes/m-p/549163#M1136804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif; font-size: 12pt;"&gt;Hi John,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif; font-size: 12pt;"&gt;in above posts they have describe you script level solution. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif; font-size: 12pt;"&gt;but if you want design level, the try this one.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif; font-size: 12pt;"&gt;uncheck show caption for all list boxes on Caption tab. and show border as well.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif; font-size: 12pt;"&gt;then create a text object, give it color you want , and text "&lt;SPAN style="color: #3d3d3d;"&gt;Delinquencies"&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: calibri, verdana, arial, sans-serif; font-size: 12pt;"&gt;then arrange all list boxes like column, and put the txt box on top, it will look like list box header(caption)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif; font-size: 12pt;"&gt;see the attached example...&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 Oct 2013 10:46:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Putting-Together-List-Boxes/m-p/549163#M1136804</guid>
      <dc:creator>israrkhan</dc:creator>
      <dc:date>2013-10-12T10:46:47Z</dc:date>
    </item>
  </channel>
</rss>

