<?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: Input Box Expressions in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Input-Box-Expressions/m-p/1409845#M426490</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am not sure I understand what isn't working? What is the issue that you are seeing?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 15 Dec 2017 16:54:39 GMT</pubDate>
    <dc:creator>sunny_talwar</dc:creator>
    <dc:date>2017-12-15T16:54:39Z</dc:date>
    <item>
      <title>Input Box Expressions</title>
      <link>https://community.qlik.com/t5/QlikView/Input-Box-Expressions/m-p/1409844#M426489</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Qlik Community, I'm new to Qlikview and I am struggling with a task I must do.&lt;/P&gt;&lt;P&gt;I load some variables from my sql server; Region, Site and Tank. Each Tank has a region and a site and I want to create an input list where the user chooses the region the site and the tank. The tricky part is that when the user chooses a region, the list of sites must be filtered with the sites only coming from the specific region, same with the tank. When the user chooses the prefered site, only the tanks of the site must be displayed.&lt;/P&gt;&lt;P&gt;At the moment the variables containing the Region, Site and Tank are vRegion, vSite and vTank used in my Input Box and the expression used in all of them look something like this&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;" =Concat(DISTINCT Region,',') "&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also the options Predefined Values Only and Predefined Values in Drop-down are used as well.&lt;/P&gt;&lt;P&gt;The part of my script where I load the variables is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD *;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;select SiteGroup.Designation Region,Site.Designation Site, Tank.Designation Tank&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;from SiteGroup&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;join Site on Site.SiteGroupID=SiteGroup.SiteGroupID&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;join Tank on Tank.SiteID=Site.SiteID&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've been looking yesterday all day long for something that could help me but didn't had much luck. Any ideas will be much appreciated! &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/grin.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Dec 2017 07:53:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Input-Box-Expressions/m-p/1409844#M426489</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-12-15T07:53:40Z</dc:date>
    </item>
    <item>
      <title>Re: Input Box Expressions</title>
      <link>https://community.qlik.com/t5/QlikView/Input-Box-Expressions/m-p/1409845#M426490</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am not sure I understand what isn't working? What is the issue that you are seeing?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Dec 2017 16:54:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Input-Box-Expressions/m-p/1409845#M426490</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-12-15T16:54:39Z</dc:date>
    </item>
    <item>
      <title>Re: Input Box Expressions</title>
      <link>https://community.qlik.com/t5/QlikView/Input-Box-Expressions/m-p/1409846#M426491</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;go away to think reload datas in Qlik like you do that on SQL.&lt;/P&gt;&lt;P&gt;all datas from your database are in a Qlik application and by selecting datas the linked fields are reduced to selection.&lt;/P&gt;&lt;P&gt;So if you select a Region you see Tanks and Sides they are belong to.&lt;/P&gt;&lt;P&gt;With Qlik you are free in your datas, without waiting for reloading datas.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Dec 2017 19:19:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Input-Box-Expressions/m-p/1409846#M426491</guid>
      <dc:creator>martinpohl</dc:creator>
      <dc:date>2017-12-15T19:19:25Z</dc:date>
    </item>
    <item>
      <title>Re: Input Box Expressions</title>
      <link>https://community.qlik.com/t5/QlikView/Input-Box-Expressions/m-p/1409847#M426492</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for all your repies.I have managed to solve my issue using the Only() function while aggregating the entities of Region and Site from my datafield:&lt;/P&gt;&lt;P&gt;"&lt;STRONG&gt;=concat(DISTINCT aggr(only({&amp;lt;Region={$(vRegion)}&amp;gt;} Site),Site),',')&lt;/STRONG&gt;".&lt;/P&gt;&lt;P&gt;The problem that I am facing right now is the following. When filtering the Tanks&lt;/P&gt;&lt;P&gt;"&lt;SPAN style="font-size: 10pt;"&gt;&lt;STRONG&gt;=concat(DISTINCT aggr(Only({&amp;lt;Site={$(vSite)}&amp;gt;} Tank),Tank),',')"&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;when the Site contains a whitespace character something isn't working right inside the expression and it returns a null string. Do you have possible solutions in mind? PS: I can change the whitespaces with an other special character like underscore when I load the data from the query but this isn't the right solution at the moment. I can contact with the people using the program that connects with the database to make sure they never use an underscore on a Site name but that's a last resort solution. Any ideas will be greatly appreciated!&lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/laugh.png" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Dec 2017 07:56:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Input-Box-Expressions/m-p/1409847#M426492</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-12-18T07:56:36Z</dc:date>
    </item>
    <item>
      <title>Re: Input Box Expressions</title>
      <link>https://community.qlik.com/t5/QlikView/Input-Box-Expressions/m-p/1409848#M426493</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That means, You got the solution by your hand, So mark your response as correct answer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Dec 2017 01:09:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Input-Box-Expressions/m-p/1409848#M426493</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-12-21T01:09:18Z</dc:date>
    </item>
  </channel>
</rss>

