<?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: In Inputbox dropdown need to hard to 2 string values Created Date Completed Date in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/In-Inputbox-dropdown-need-to-hard-to-2-string-values-Created/m-p/905350#M470885</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Petter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These 2 Created Date and Completed Date are not fields. These are hardcoded string which I just want to display to users and based on there 2 values I can set expression.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So just Imagine, In input list box I want to display 2 values &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Computer&lt;/P&gt;&lt;P&gt;Laptop&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There values are not coming from anywhere I want to hardcode and display in list box. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 27 Apr 2015 05:19:28 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-04-27T05:19:28Z</dc:date>
    <item>
      <title>In Inputbox dropdown need to hard to 2 string values Created Date Completed Date</title>
      <link>https://community.qlik.com/t5/QlikView/In-Inputbox-dropdown-need-to-hard-to-2-string-values-Created/m-p/905348#M470883</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys&lt;/P&gt;&lt;P&gt;In Input-box drop-down, need to hard to 2 string values Created Date and Completed Date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So that I can make the date dynamic for both created and completed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Users should select a value either created or completed date from Date Type Inputbox and then based on selection data should display.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am having difficulties in getting drop-down values&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Created Date&amp;nbsp; &lt;/P&gt;&lt;P&gt;Completed Date&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried expression =Concat(('Created Date' &amp;amp; chr(13) &amp;amp; 'Completed Date'),',') but not working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See the creenshot&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2015 04:23:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/In-Inputbox-dropdown-need-to-hard-to-2-string-values-Created/m-p/905348#M470883</guid>
      <dc:creator />
      <dc:date>2015-04-27T04:23:20Z</dc:date>
    </item>
    <item>
      <title>Re: In Inputbox dropdown need to hard to 2 string values Created Date Completed Date</title>
      <link>https://community.qlik.com/t5/QlikView/In-Inputbox-dropdown-need-to-hard-to-2-string-values-Created/m-p/905349#M470884</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;‌It is necessary to separate the values with semicolons ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;If you have two different fields and you want to show each of them on it's separate line in a drop-down and the fields return a distinct value when they are used you could simply do this:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = [Created Date] &amp;amp; ';' [Completed Date]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;or to make sure you get two distinct values always:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = Min( [Created Date] ) &amp;amp; ';' &amp;amp; Min( [Completed Date] )&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;or if a set expression helps you pick out those two particular distinct values:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; = Min( {&amp;lt;ID={1001}&amp;gt;} [Created Date] )&amp;nbsp; &amp;amp;&amp;nbsp;&amp;nbsp; ';'&amp;nbsp;&amp;nbsp; &amp;amp;&amp;nbsp;&amp;nbsp; Max( {&amp;lt;ID={1001}&amp;gt;} [Completed Date] )&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2015 05:14:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/In-Inputbox-dropdown-need-to-hard-to-2-string-values-Created/m-p/905349#M470884</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2015-04-27T05:14:33Z</dc:date>
    </item>
    <item>
      <title>Re: In Inputbox dropdown need to hard to 2 string values Created Date Completed Date</title>
      <link>https://community.qlik.com/t5/QlikView/In-Inputbox-dropdown-need-to-hard-to-2-string-values-Created/m-p/905350#M470885</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Petter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These 2 Created Date and Completed Date are not fields. These are hardcoded string which I just want to display to users and based on there 2 values I can set expression.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So just Imagine, In input list box I want to display 2 values &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Computer&lt;/P&gt;&lt;P&gt;Laptop&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There values are not coming from anywhere I want to hardcode and display in list box. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2015 05:19:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/In-Inputbox-dropdown-need-to-hard-to-2-string-values-Created/m-p/905350#M470885</guid>
      <dc:creator />
      <dc:date>2015-04-27T05:19:28Z</dc:date>
    </item>
    <item>
      <title>Re: In Inputbox dropdown need to hard to 2 string values Created Date Completed Date</title>
      <link>https://community.qlik.com/t5/QlikView/In-Inputbox-dropdown-need-to-hard-to-2-string-values-Created/m-p/905351#M470886</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then you simply hardcode them in your in your &lt;STRONG&gt;Variables&lt;/STRONG&gt; tab in &lt;STRONG&gt;Document Properties&lt;/STRONG&gt; like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="2015-04-27 #1.PNG" class="jive-image image-1" src="/legacyfs/online/85085_2015-04-27 #1.PNG" style="width: 620px; height: 413px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2015 05:49:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/In-Inputbox-dropdown-need-to-hard-to-2-string-values-Created/m-p/905351#M470886</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2015-04-27T05:49:17Z</dc:date>
    </item>
    <item>
      <title>Re: In Inputbox dropdown need to hard to 2 string values Created Date Completed Date</title>
      <link>https://community.qlik.com/t5/QlikView/In-Inputbox-dropdown-need-to-hard-to-2-string-values-Created/m-p/905352#M470887</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Petter,&lt;/P&gt;&lt;P&gt;Not getting expected result. Values are not displaying in drop-down format.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Both the values are getting displayed in one line. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;See the Screenshot &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2015 06:01:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/In-Inputbox-dropdown-need-to-hard-to-2-string-values-Created/m-p/905352#M470887</guid>
      <dc:creator />
      <dc:date>2015-04-27T06:01:17Z</dc:date>
    </item>
    <item>
      <title>Re: In Inputbox dropdown need to hard to 2 string values Created Date Completed Date</title>
      <link>https://community.qlik.com/t5/QlikView/In-Inputbox-dropdown-need-to-hard-to-2-string-values-Created/m-p/905353#M470888</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then the semicolon is due to my Windows settings and that semicolon is used as a separator value. So you will have to replace the semicolon with whatever separator is used in your language settings.... maybe comma like in US? I can only guess &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/grin.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2015 06:09:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/In-Inputbox-dropdown-need-to-hard-to-2-string-values-Created/m-p/905353#M470888</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2015-04-27T06:09:37Z</dc:date>
    </item>
    <item>
      <title>Re: In Inputbox dropdown need to hard to 2 string values Created Date Completed Date</title>
      <link>https://community.qlik.com/t5/QlikView/In-Inputbox-dropdown-need-to-hard-to-2-string-values-Created/m-p/905354#M470889</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Actually - according to the online help with QlikView it is not language dependent ... it should be semicolons ... so I don't know why it doesn't work for you....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is according to the help:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="2015-04-27 #2.PNG" class="jive-image image-1" src="/legacyfs/online/85087_2015-04-27 #2.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2015 06:13:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/In-Inputbox-dropdown-need-to-hard-to-2-string-values-Created/m-p/905354#M470889</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2015-04-27T06:13:27Z</dc:date>
    </item>
    <item>
      <title>Re: In Inputbox dropdown need to hard to 2 string values Created Date Completed Date</title>
      <link>https://community.qlik.com/t5/QlikView/In-Inputbox-dropdown-need-to-hard-to-2-string-values-Created/m-p/905355#M470890</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This one works:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Created Date;Completed Dte&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2015 06:20:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/In-Inputbox-dropdown-need-to-hard-to-2-string-values-Created/m-p/905355#M470890</guid>
      <dc:creator />
      <dc:date>2015-04-27T06:20:59Z</dc:date>
    </item>
  </channel>
</rss>

