<?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: User Input List - Multiple Text Values as Selection in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/User-Input-List-Multiple-Text-Values-as-Selection/m-p/673470#M244535</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes I did actually solve this after many months of trial and error. So here is how it works:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Create a variable vVIN_List and an input box for it. User copies and pastes their VIN list from Excel into this input box so the varible vVIN_List becomes something like this (these are all made up VINs):&amp;nbsp; 1A23DEFG32H123456&amp;nbsp; 1B45DEFG32H789456&amp;nbsp; 1C67DEFG32H654987&amp;nbsp; 2A89DEFG32H123456&amp;nbsp; 2B10DEFG32H987321&amp;nbsp; 2C11DEFG32H789123&amp;nbsp; 3A12DEFG32H147963&amp;nbsp; 3B13DEFG32H258741&amp;nbsp; 3C14DEFG32H369741 &lt;/LI&gt;&lt;LI&gt;Set up a variable event trigger that converts this into a search mask and passes it into the selection in the VIN field. So the variable event trigger for vVIN_List looks like this:&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Trigger: OnInput&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Action: Select in Field&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Field: VIN&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Search String: ='(' &amp;amp; Replace(Replace(Replace(Trim(vVIN_List), '&amp;nbsp; ', '|'),' ', '|'), chr(10), '|') &amp;amp; ')'&lt;/LI&gt;&lt;LI&gt;This converts vVIN_List to this and passes this search mask into the VIN field:&lt;BR /&gt;(1A23DEFG32H123456|1B45DEFG32H789456|1C67DEFG32H654987|2A89DEFG32H123456|2B10DEFG32H987321|2C11DEFG32H789123|3A12DEFG32H147963|3B13DEFG32H258741|3C14DEFG32H369741)&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;NOTE: This has to all be done in one step because the variable event trigger actions are not done sequentially. This was an issue for me in my previous attempts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I also created a text box which pops up when a user inputs a VIN list that displays the number of VINs they pasted and the number of VINs that were actually found/selected. This is the text box expression:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; =GetSelectedCount(VIN)&amp;amp;' of '&amp;amp;vNoPastedVins &amp;amp;' pasted VINs found (Click to dismiss)'&lt;/P&gt;&lt;P&gt;where the variable &lt;SPAN style="font-size: 13.3333px;"&gt;vNoPastedVins =len(purgechar(vVIN_List,' '))/17&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So far I haven't found a limit to the number of VINs that can be pasted either! It can handle tens of thousands at a time. Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 10 Jun 2016 12:31:45 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2016-06-10T12:31:45Z</dc:date>
    <item>
      <title>User Input List - Multiple Text Values as Selection</title>
      <link>https://community.qlik.com/t5/QlikView/User-Input-List-Multiple-Text-Values-as-Selection/m-p/673467#M244532</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know this question has been posted here before but my data is somewhat different than most. I am an engineer, not a developer. I have large data sets of technical (&lt;EM&gt;not sales&lt;/EM&gt;) data dealing with information about vehicles (identified by their unique 17 digit alphanumeric VIN). VIN = Vehicle Identification Number, e.g. 1A2B3C4DE5F987654. Each VIN is unique but each VIN can have thousands of records in the data. I need a way for the user to input a list of VINs and pass those into the selection for the 'VIN' field. This is only one of several ways that VINs can be selected so I need to be able to do it without reload (preferably copy and paste out of an Excel sheet). From what I have read on other posts, this is not an easy task. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I've tried so far (unsuccessfully):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Pasting list from excel into a single line of a list box &amp;gt; using a button with concat() function to pass the list box variable (which a tab delimited list of VINs) into the selection for VIN&lt;/LI&gt;&lt;LI&gt;From &lt;A href="https://community.qlik.com/message/32525"&gt;Is there a way to have an input field allow for multiple lines of text?&lt;/A&gt;&lt;OL&gt;&lt;LI&gt;List box to text box&lt;UL&gt;&lt;LI&gt;User must enter values line by line&lt;/LI&gt;&lt;LI&gt;I don't believe this will allow me to pass the values into selection.&lt;/LI&gt;&lt;LI&gt;Requires a variable for each line of input &amp;gt; not practical because I need to allow at least 75-100 VIN inputs&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Again, I am engineer doing a developer's job so I am not proficient with macros/VBA. Any help here would be GREATLY appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CB&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2014 12:49:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/User-Input-List-Multiple-Text-Values-as-Selection/m-p/673467#M244532</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-07-29T12:49:25Z</dc:date>
    </item>
    <item>
      <title>Re: User Input List - Multiple Text Values as Selection</title>
      <link>https://community.qlik.com/t5/QlikView/User-Input-List-Multiple-Text-Values-as-Selection/m-p/673468#M244533</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Casey,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I appreciate if you have a solution working and would really like to now if QV is feasible to handle multiple input&amp;nbsp; values for selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Richard&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Mar 2015 14:40:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/User-Input-List-Multiple-Text-Values-as-Selection/m-p/673468#M244533</guid>
      <dc:creator>steinrich</dc:creator>
      <dc:date>2015-03-06T14:40:02Z</dc:date>
    </item>
    <item>
      <title>Re: User Input List - Multiple Text Values as Selection</title>
      <link>https://community.qlik.com/t5/QlikView/User-Input-List-Multiple-Text-Values-as-Selection/m-p/673469#M244534</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Casey,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did you solve your user input problem? I have a very similar requirement to be able to paste in a list of chassis numbers to be selected.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;ML&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jun 2016 12:04:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/User-Input-List-Multiple-Text-Values-as-Selection/m-p/673469#M244534</guid>
      <dc:creator>martynlloyd</dc:creator>
      <dc:date>2016-06-10T12:04:25Z</dc:date>
    </item>
    <item>
      <title>Re: User Input List - Multiple Text Values as Selection</title>
      <link>https://community.qlik.com/t5/QlikView/User-Input-List-Multiple-Text-Values-as-Selection/m-p/673470#M244535</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes I did actually solve this after many months of trial and error. So here is how it works:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Create a variable vVIN_List and an input box for it. User copies and pastes their VIN list from Excel into this input box so the varible vVIN_List becomes something like this (these are all made up VINs):&amp;nbsp; 1A23DEFG32H123456&amp;nbsp; 1B45DEFG32H789456&amp;nbsp; 1C67DEFG32H654987&amp;nbsp; 2A89DEFG32H123456&amp;nbsp; 2B10DEFG32H987321&amp;nbsp; 2C11DEFG32H789123&amp;nbsp; 3A12DEFG32H147963&amp;nbsp; 3B13DEFG32H258741&amp;nbsp; 3C14DEFG32H369741 &lt;/LI&gt;&lt;LI&gt;Set up a variable event trigger that converts this into a search mask and passes it into the selection in the VIN field. So the variable event trigger for vVIN_List looks like this:&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Trigger: OnInput&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Action: Select in Field&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Field: VIN&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Search String: ='(' &amp;amp; Replace(Replace(Replace(Trim(vVIN_List), '&amp;nbsp; ', '|'),' ', '|'), chr(10), '|') &amp;amp; ')'&lt;/LI&gt;&lt;LI&gt;This converts vVIN_List to this and passes this search mask into the VIN field:&lt;BR /&gt;(1A23DEFG32H123456|1B45DEFG32H789456|1C67DEFG32H654987|2A89DEFG32H123456|2B10DEFG32H987321|2C11DEFG32H789123|3A12DEFG32H147963|3B13DEFG32H258741|3C14DEFG32H369741)&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;NOTE: This has to all be done in one step because the variable event trigger actions are not done sequentially. This was an issue for me in my previous attempts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I also created a text box which pops up when a user inputs a VIN list that displays the number of VINs they pasted and the number of VINs that were actually found/selected. This is the text box expression:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; =GetSelectedCount(VIN)&amp;amp;' of '&amp;amp;vNoPastedVins &amp;amp;' pasted VINs found (Click to dismiss)'&lt;/P&gt;&lt;P&gt;where the variable &lt;SPAN style="font-size: 13.3333px;"&gt;vNoPastedVins =len(purgechar(vVIN_List,' '))/17&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So far I haven't found a limit to the number of VINs that can be pasted either! It can handle tens of thousands at a time. Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jun 2016 12:31:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/User-Input-List-Multiple-Text-Values-as-Selection/m-p/673470#M244535</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-06-10T12:31:45Z</dc:date>
    </item>
    <item>
      <title>Re: User Input List - Multiple Text Values as Selection</title>
      <link>https://community.qlik.com/t5/QlikView/User-Input-List-Multiple-Text-Values-as-Selection/m-p/673471#M244536</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See solution below.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jun 2016 12:32:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/User-Input-List-Multiple-Text-Values-as-Selection/m-p/673471#M244536</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-06-10T12:32:45Z</dc:date>
    </item>
    <item>
      <title>Re: User Input List - Multiple Text Values as Selection</title>
      <link>https://community.qlik.com/t5/QlikView/User-Input-List-Multiple-Text-Values-as-Selection/m-p/673472#M244537</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's fantastic,&lt;/P&gt;&lt;P&gt;many thanks Casey!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marty.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jun 2016 16:15:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/User-Input-List-Multiple-Text-Values-as-Selection/m-p/673472#M244537</guid>
      <dc:creator>martynlloyd</dc:creator>
      <dc:date>2016-06-10T16:15:13Z</dc:date>
    </item>
    <item>
      <title>Re: User Input List - Multiple Text Values as Selection</title>
      <link>https://community.qlik.com/t5/QlikView/User-Input-List-Multiple-Text-Values-as-Selection/m-p/673473#M244538</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Great job. Thanks to find this out and share to the community.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 09:38:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/User-Input-List-Multiple-Text-Values-as-Selection/m-p/673473#M244538</guid>
      <dc:creator>steinrich</dc:creator>
      <dc:date>2016-06-16T09:38:21Z</dc:date>
    </item>
    <item>
      <title>Re: User Input List - Multiple Text Values as Selection</title>
      <link>https://community.qlik.com/t5/QlikView/User-Input-List-Multiple-Text-Values-as-Selection/m-p/673474#M244539</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Casey that is so awesome - saved me a load of time/coding! Thanx!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Oct 2017 10:43:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/User-Input-List-Multiple-Text-Values-as-Selection/m-p/673474#M244539</guid>
      <dc:creator>shane_spencer</dc:creator>
      <dc:date>2017-10-02T10:43:00Z</dc:date>
    </item>
    <item>
      <title>Re: User Input List - Multiple Text Values as Selection</title>
      <link>https://community.qlik.com/t5/QlikView/User-Input-List-Multiple-Text-Values-as-Selection/m-p/1616799#M445487</link>
      <description>&lt;P&gt;Your solution works perfectly except for when input has spaces. How do you handle that. In my case the input with spaces did not get selected and gets ignored.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;for example.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you have:&lt;/P&gt;&lt;P&gt;temp&lt;/P&gt;&lt;P&gt;temp1&lt;/P&gt;&lt;P&gt;temp3&lt;/P&gt;&lt;P&gt;temp 12&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;in above case temp1, temp3 gets selected and "temp 12" get ignored. How do you make changes to your script so it can handle spaces in input box.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Aug 2019 20:21:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/User-Input-List-Multiple-Text-Values-as-Selection/m-p/1616799#M445487</guid>
      <dc:creator>userid128223</dc:creator>
      <dc:date>2019-08-26T20:21:39Z</dc:date>
    </item>
    <item>
      <title>Re: User Input List - Multiple Text Values as Selection</title>
      <link>https://community.qlik.com/t5/QlikView/User-Input-List-Multiple-Text-Values-as-Selection/m-p/2537524#M1226761</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/12863"&gt;@userid128223&lt;/a&gt;&amp;nbsp; Have you got any solution to this. I am also sailing on same both&lt;/P&gt;</description>
      <pubDate>Fri, 28 Nov 2025 13:00:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/User-Input-List-Multiple-Text-Values-as-Selection/m-p/2537524#M1226761</guid>
      <dc:creator>SrinithiS</dc:creator>
      <dc:date>2025-11-28T13:00:49Z</dc:date>
    </item>
  </channel>
</rss>

