<?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: SAS VA 7.5 Text Input Multi Select in SAS Visual Analytics</title>
    <link>https://communities.sas.com/t5/SAS-Visual-Analytics/SAS-VA-7-5-Text-Input-Multi-Select/m-p/654241#M13832</link>
    <description>Perfect,&lt;BR /&gt;That worked</description>
    <pubDate>Mon, 08 Jun 2020 07:35:03 GMT</pubDate>
    <dc:creator>titan31</dc:creator>
    <dc:date>2020-06-08T07:35:03Z</dc:date>
    <item>
      <title>SAS VA 7.5 Text Input Multi Select</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/SAS-VA-7-5-Text-Input-Multi-Select/m-p/653582#M13826</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm trying to put the ability to select mutliple items into a text input field so for example an user could enter in 3 different items and the table would come back showing all those 3 items.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I followed this post&amp;nbsp;&lt;A href="https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-use-text-input-for-multiple-selections-in-SAS-VA-7-3/td-p/561883" target="_blank"&gt;https://communities.sas.com/t5/SAS-Visual-Analytics/How-to-use-text-input-for-multiple-selections-in-SAS-VA-7-3/td-p/561883&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and it works quite well bar if the user enters 2 items, it takes the 3rd item as blank so returns everything anyway&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;THis is the code I'm using in the filter&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;IF ( GetLength('GroupNameParameter'p) &amp;gt; 0 )&lt;BR /&gt;RETURN ( ( UpCase('Group Name'n) Contains UpCase(&lt;BR /&gt;'GroupNameInput1'n) ) OR ( UpCase('Group Name'n) Contains UpCase(&lt;BR /&gt;'GroupNameInput2'n) ) OR ( UpCase('Group Name'n) Contains UpCase(&lt;BR /&gt;'GroupNameInput3'n) ) )&lt;BR /&gt;ELSE ( 1 = 1 )&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and in the calculated item&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;GetWord('GroupNameParameter'p, 3)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ideally, I'd like it so if the user enters GroupA into the search box that's the only option that comes back, but if they enter GroupA;GroupB;GroupC into it all those return.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Atm, it does the latter part, but if I just enter GroupA, it returns everything.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anyone any help on this or done something similar themselves?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jun 2020 13:18:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/SAS-VA-7-5-Text-Input-Multi-Select/m-p/653582#M13826</guid>
      <dc:creator>titan31</dc:creator>
      <dc:date>2020-06-05T13:18:55Z</dc:date>
    </item>
    <item>
      <title>Re: SAS VA 7.5 Text Input Multi Select</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/SAS-VA-7-5-Text-Input-Multi-Select/m-p/653710#M13827</link>
      <description>&lt;P&gt;Have not tested with VA7.5 but I suggest you test for missing values on your search value, and only if not missing apply the filter expression, else you return 0&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;See example below:&lt;/P&gt;
&lt;PRE&gt;IF ( GetLength('makeList'p) &amp;gt; 0 )
RETURN ( (
IF ( 'makeS1'n NotMissing )
RETURN ( UpCase('Make'n) Contains UpCase('makeS1'n) )
ELSE ( 0 = 1 ) ) OR (
IF ( 'makeS2'n NotMissing )
RETURN ( UpCase('Make'n) Contains UpCase('makeS2'n) )
ELSE ( 0 = 1 ) ) )
ELSE ( 1 = 1 )&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jun 2020 15:51:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/SAS-VA-7-5-Text-Input-Multi-Select/m-p/653710#M13827</guid>
      <dc:creator>BrunoMueller</dc:creator>
      <dc:date>2020-06-05T15:51:27Z</dc:date>
    </item>
    <item>
      <title>Re: SAS VA 7.5 Text Input Multi Select</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/SAS-VA-7-5-Text-Input-Multi-Select/m-p/654241#M13832</link>
      <description>Perfect,&lt;BR /&gt;That worked</description>
      <pubDate>Mon, 08 Jun 2020 07:35:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/SAS-VA-7-5-Text-Input-Multi-Select/m-p/654241#M13832</guid>
      <dc:creator>titan31</dc:creator>
      <dc:date>2020-06-08T07:35:03Z</dc:date>
    </item>
  </channel>
</rss>

