<?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: Select combo box in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Select-combo-box/m-p/1629468#M507388</link>
    <description>&lt;P&gt;not work sorry, it is blank without values with this expression&lt;/P&gt;</description>
    <pubDate>Mon, 30 Sep 2019 09:25:05 GMT</pubDate>
    <dc:creator>danosoft</dc:creator>
    <dc:date>2019-09-30T09:25:05Z</dc:date>
    <item>
      <title>Select combo box</title>
      <link>https://community.qlik.com/t5/QlikView/Select-combo-box/m-p/1628739#M507382</link>
      <description>&lt;P&gt;Very simple question: In a select box (dropdown list) can i choose the first element for default?&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2019 16:33:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-combo-box/m-p/1628739#M507382</guid>
      <dc:creator>danosoft</dc:creator>
      <dc:date>2019-09-26T16:33:16Z</dc:date>
    </item>
    <item>
      <title>Re: Select combo box</title>
      <link>https://community.qlik.com/t5/QlikView/Select-combo-box/m-p/1628999#M507383</link>
      <description>&lt;P&gt;Probably yes, with something like:&lt;/P&gt;&lt;P&gt;match(Field, subfield(concat(distinct Field, ',', SortParameter), ',',1))&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;</description>
      <pubDate>Fri, 27 Sep 2019 11:13:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-combo-box/m-p/1628999#M507383</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2019-09-27T11:13:44Z</dc:date>
    </item>
    <item>
      <title>Re: Select combo box</title>
      <link>https://community.qlik.com/t5/QlikView/Select-combo-box/m-p/1629165#M507384</link>
      <description>&lt;P&gt;my databse field name is:DES_REFERENTE, so my expressio will be:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;match(DES_REFERENTE, subfield(concat(distinct DES_REFERENTE, ',', SortParameter), ',',1))&lt;/P&gt;&lt;P&gt;Right?&lt;/P&gt;&lt;P&gt;what i need to put in SortParameter?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Sep 2019 15:34:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-combo-box/m-p/1629165#M507384</guid>
      <dc:creator>danosoft</dc:creator>
      <dc:date>2019-09-27T15:34:39Z</dc:date>
    </item>
    <item>
      <title>Re: Select combo box</title>
      <link>https://community.qlik.com/t5/QlikView/Select-combo-box/m-p/1629415#M507385</link>
      <description>&lt;P&gt;The SortParameter is optional - if you leave it it will be automatically sorted in a alpha-numeric order. If this fits to your requirement you didn't need do more. But if not you may apply any numeric field as a sorting which might need to create in the script if you need any special ordering.&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;</description>
      <pubDate>Mon, 30 Sep 2019 07:04:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-combo-box/m-p/1629415#M507385</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2019-09-30T07:04:29Z</dc:date>
    </item>
    <item>
      <title>Re: Select combo box</title>
      <link>https://community.qlik.com/t5/QlikView/Select-combo-box/m-p/1629438#M507386</link>
      <description>&lt;P&gt;Ok, but if i write:&lt;/P&gt;&lt;P&gt;match(DES_REFERENTE, subfield(concat(distinct DES_REFERENTE, ',', ''), ',',1))&lt;/P&gt;&lt;P&gt;it not work, the dropdown list is blank&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Sep 2019 08:26:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-combo-box/m-p/1629438#M507386</guid>
      <dc:creator>danosoft</dc:creator>
      <dc:date>2019-09-30T08:26:32Z</dc:date>
    </item>
    <item>
      <title>Re: Select combo box</title>
      <link>https://community.qlik.com/t5/QlikView/Select-combo-box/m-p/1629453#M507387</link>
      <description>&lt;P&gt;Optional parameter which aren't needed must be left out and not specified as empty string or NULL or similar. Therefore try:&lt;/P&gt;&lt;P&gt;match(DES_REFERENTE, subfield(concat(distinct DES_REFERENTE, ','), ',',1))&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;</description>
      <pubDate>Mon, 30 Sep 2019 09:01:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-combo-box/m-p/1629453#M507387</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2019-09-30T09:01:50Z</dc:date>
    </item>
    <item>
      <title>Re: Select combo box</title>
      <link>https://community.qlik.com/t5/QlikView/Select-combo-box/m-p/1629468#M507388</link>
      <description>&lt;P&gt;not work sorry, it is blank without values with this expression&lt;/P&gt;</description>
      <pubDate>Mon, 30 Sep 2019 09:25:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-combo-box/m-p/1629468#M507388</guid>
      <dc:creator>danosoft</dc:creator>
      <dc:date>2019-09-30T09:25:05Z</dc:date>
    </item>
    <item>
      <title>Re: Select combo box</title>
      <link>https://community.qlik.com/t5/QlikView/Select-combo-box/m-p/1629474#M507389</link>
      <description>&lt;P&gt;Did you try to apply the expression within the listbox / combo box? That's the wrong place - at least like I understood your question which was that a certain value should be selected and not that this box contained just those single value.&lt;/P&gt;&lt;P&gt;If I understood it right this expression must be placed within an OnOpen action to select this value. Before this put this expression in a textbox to ensure that it returned your expected value.&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;</description>
      <pubDate>Mon, 30 Sep 2019 09:41:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-combo-box/m-p/1629474#M507389</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2019-09-30T09:41:59Z</dc:date>
    </item>
    <item>
      <title>Re: Select combo box</title>
      <link>https://community.qlik.com/t5/QlikView/Select-combo-box/m-p/1629480#M507390</link>
      <description>&lt;P&gt;ah i understand now, yes i had insert in a list box, so i will try to put in action in the sheet&lt;/P&gt;</description>
      <pubDate>Mon, 30 Sep 2019 09:55:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-combo-box/m-p/1629480#M507390</guid>
      <dc:creator>danosoft</dc:creator>
      <dc:date>2019-09-30T09:55:26Z</dc:date>
    </item>
    <item>
      <title>Re: Select combo box</title>
      <link>https://community.qlik.com/t5/QlikView/Select-combo-box/m-p/1629482#M507391</link>
      <description>&lt;P&gt;&amp;nbsp;ok i tried, but it not work sorry.&lt;/P&gt;&lt;P&gt;my listbox have the field: des_referente&lt;/P&gt;&lt;P&gt;i put in action of my sheet:&lt;/P&gt;&lt;P&gt;- select field:&amp;nbsp; DES_REFERENTE&lt;/P&gt;&lt;P&gt;search string:&amp;nbsp; match(DES_REFERENTE, subfield(concat(distinct DES_REFERENTE, ','), ',',1))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Sep 2019 10:05:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-combo-box/m-p/1629482#M507391</guid>
      <dc:creator>danosoft</dc:creator>
      <dc:date>2019-09-30T10:05:42Z</dc:date>
    </item>
    <item>
      <title>Re: Select combo box</title>
      <link>https://community.qlik.com/t5/QlikView/Select-combo-box/m-p/1629521#M507392</link>
      <description>&lt;P&gt;Is this field "des_referente" or "DES_REFERENTE"? For QlikView it's not the same. Further did you this expression within a textbox and returned it the expected values? Also you need to ensure that the search-string is interpreted as expression and not only as a string, means adding:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=&lt;/STRONG&gt; match(DES_REFERENTE, subfield(concat(distinct DES_REFERENTE, ','), ',',1))&lt;BR /&gt;&amp;nbsp;&amp;nbsp; or&lt;BR /&gt;&lt;STRONG&gt;= '=&lt;/STRONG&gt;match(DES_REFERENTE, subfield(concat(distinct DES_REFERENTE, ','), ',',1))&lt;STRONG&gt;'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;</description>
      <pubDate>Mon, 30 Sep 2019 11:19:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-combo-box/m-p/1629521#M507392</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2019-09-30T11:19:53Z</dc:date>
    </item>
    <item>
      <title>Re: Select combo box</title>
      <link>https://community.qlik.com/t5/QlikView/Select-combo-box/m-p/1632477#M507393</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Daniele, did Marcus' last post finally get things working?&amp;nbsp; If so, please do not forget to circle pack and use the Accept as Solution button the post(s) that helped you get things working as expected.&amp;nbsp; If you did something different, consider posting that and mark it using the button to let everyone know what you did.&amp;nbsp; If you are still working upon things, leave an update for us.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Regards,&lt;BR /&gt;Brett&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Oct 2019 12:16:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-combo-box/m-p/1632477#M507393</guid>
      <dc:creator>Brett_Bleess</dc:creator>
      <dc:date>2019-10-08T12:16:31Z</dc:date>
    </item>
    <item>
      <title>Re: Select combo box</title>
      <link>https://community.qlik.com/t5/QlikView/Select-combo-box/m-p/1632516#M507394</link>
      <description>no sorry not work, my field name is DES_REFERENTE&lt;BR /&gt;if i put in action on my sheet the expression: = match(DES_REFERENTE, subfield(concat(distinct DES_REFERENTE, ','), ',',1)) it not selected me the first value.&lt;BR /&gt;if i put this expression in a textarea it show me 1</description>
      <pubDate>Tue, 08 Oct 2019 13:25:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-combo-box/m-p/1632516#M507394</guid>
      <dc:creator>danosoft</dc:creator>
      <dc:date>2019-10-08T13:25:51Z</dc:date>
    </item>
    <item>
      <title>Re: Select combo box</title>
      <link>https://community.qlik.com/t5/QlikView/Select-combo-box/m-p/1632521#M507395</link>
      <description>&lt;P&gt;It will likely help a lot in this case if you can attach a QVW file, so folks can see the data model etc...&amp;nbsp; If there are confidential field data, you can use Settings\Document Properties\Scrambling to scramble those field values...&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt;Brett&lt;/P&gt;</description>
      <pubDate>Tue, 08 Oct 2019 13:31:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-combo-box/m-p/1632521#M507395</guid>
      <dc:creator>Brett_Bleess</dc:creator>
      <dc:date>2019-10-08T13:31:22Z</dc:date>
    </item>
    <item>
      <title>Re: Select combo box</title>
      <link>https://community.qlik.com/t5/QlikView/Select-combo-box/m-p/1635430#M507396</link>
      <description>&lt;P&gt;hi i put an example&lt;/P&gt;</description>
      <pubDate>Tue, 15 Oct 2019 13:05:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-combo-box/m-p/1635430#M507396</guid>
      <dc:creator>danosoft</dc:creator>
      <dc:date>2019-10-15T13:05:59Z</dc:date>
    </item>
    <item>
      <title>Re: Select combo box</title>
      <link>https://community.qlik.com/t5/QlikView/Select-combo-box/m-p/1635487#M507397</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Daniele, thanks for that, I am attaching what I did, unfortunately I am not sure of the why, but I added three text objects to your app and split up the expression you are using into its subcomponents to test, and the issue is with the 'match' piece, that is returning null, but I am going to see if someone else can explain that part, but I checked the Help, and it would seem to me you are missing something here:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://help.qlik.com/en-US/qlikview/April2019/Subsystems/Client/Content/QV_QlikView/Scripting/ConditionalFunctions/match.htm" target="_blank"&gt;https://help.qlik.com/en-US/qlikview/April2019/Subsystems/Client/Content/QV_QlikView/Scripting/ConditionalFunctions/match.htm&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Maybe you will be able to sort it out at this point, but perhaps&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/28038"&gt;@marcus_sommer&lt;/a&gt;&amp;nbsp; may be able to have another look too.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Regards,&lt;BR /&gt;Brett&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Oct 2019 14:21:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-combo-box/m-p/1635487#M507397</guid>
      <dc:creator>Brett_Bleess</dc:creator>
      <dc:date>2019-10-15T14:21:41Z</dc:date>
    </item>
    <item>
      <title>Re: Select combo box</title>
      <link>https://community.qlik.com/t5/QlikView/Select-combo-box/m-p/1635508#M507398</link>
      <description>&lt;P&gt;Take a look on the attachment.&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;</description>
      <pubDate>Tue, 15 Oct 2019 14:54:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-combo-box/m-p/1635508#M507398</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2019-10-15T14:54:31Z</dc:date>
    </item>
    <item>
      <title>Re: Select combo box</title>
      <link>https://community.qlik.com/t5/QlikView/Select-combo-box/m-p/1635551#M507401</link>
      <description>if you change Sheet, and go again in the sheet it not work</description>
      <pubDate>Tue, 15 Oct 2019 16:14:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-combo-box/m-p/1635551#M507401</guid>
      <dc:creator>danosoft</dc:creator>
      <dc:date>2019-10-15T16:14:11Z</dc:date>
    </item>
    <item>
      <title>Re: Select combo box</title>
      <link>https://community.qlik.com/t5/QlikView/Select-combo-box/m-p/1635840#M507404</link>
      <description>&lt;P&gt;Yes, I put the action only in the textbox-button to show that the selection-logic worked.&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;</description>
      <pubDate>Wed, 16 Oct 2019 08:12:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-combo-box/m-p/1635840#M507404</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2019-10-16T08:12:58Z</dc:date>
    </item>
    <item>
      <title>Re: Select combo box</title>
      <link>https://community.qlik.com/t5/QlikView/Select-combo-box/m-p/1635864#M507406</link>
      <description>&lt;P&gt;Sorry but i need in the select box as you know, and there it not work. I not need that in the text area&lt;/P&gt;</description>
      <pubDate>Wed, 16 Oct 2019 08:53:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-combo-box/m-p/1635864#M507406</guid>
      <dc:creator>danosoft</dc:creator>
      <dc:date>2019-10-16T08:53:37Z</dc:date>
    </item>
  </channel>
</rss>

