<?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: How to find values ending with * in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-find-values-ending-with/m-p/1086193#M918519</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;Annamalai Muthappan wrote:&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Is there anyway I can apply this as an action to a button?&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Sure, should be possible using a Selection - Select in field action.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use field name&lt;/P&gt;&lt;P&gt;Field&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and as search string&lt;/P&gt;&lt;P&gt;='=Index(Field,''*'')'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[two single quotes around *, not a single double quote]&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 05 May 2016 21:16:20 GMT</pubDate>
    <dc:creator>swuehl</dc:creator>
    <dc:date>2016-05-05T21:16:20Z</dc:date>
    <item>
      <title>How to find values ending with *</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-find-values-ending-with/m-p/1086186#M918512</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In one field I have values like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Field:&lt;/P&gt;&lt;P&gt;ABC&lt;/P&gt;&lt;P&gt;CDE*&lt;/P&gt;&lt;P&gt;EFG&lt;/P&gt;&lt;P&gt;GHI*&lt;/P&gt;&lt;P&gt;IJK*&lt;/P&gt;&lt;P&gt;KLM&lt;/P&gt;&lt;P&gt;MNO&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All the values ending with * means all those records are legacy records.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the application I have a list box for the Field. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The user would like to search for all value ending with * but just searching for * in list box selects all values.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-find-values-ending-with/m-p/1086186#M918512</guid>
      <dc:creator />
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to find values ending with *</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-find-values-ending-with/m-p/1086187#M918513</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD Field,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(Index(Field, '*') &amp;gt; 0, 1, 0) as Legacy_Flag&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FROM Source;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 May 2016 20:50:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-find-values-ending-with/m-p/1086187#M918513</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-05-05T20:50:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to find values ending with *</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-find-values-ending-with/m-p/1086188#M918514</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can also use index() in the search bar of your list box:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=index(Field,'*')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 May 2016 20:53:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-find-values-ending-with/m-p/1086188#M918514</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2016-05-05T20:53:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to find values ending with *</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-find-values-ending-with/m-p/1086189#M918515</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunny,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It needs to be searchable in the front end. I have one list box that has the list of both legacy &amp;amp; non legacy records. In that list anything that ends with a * is legacy. My requirement is, from the list box the user should be able to search all legacy records (basically all values that end with *)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 May 2016 20:54:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-find-values-ending-with/m-p/1086189#M918515</guid>
      <dc:creator />
      <dc:date>2016-05-05T20:54:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to find values ending with *</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-find-values-ending-with/m-p/1086190#M918516</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Awesome. That worked. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was actually trying the same command index(Field,'*') before posting this question but totally forgot to add the = at the beginning..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 May 2016 20:57:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-find-values-ending-with/m-p/1086190#M918516</guid>
      <dc:creator />
      <dc:date>2016-05-05T20:57:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to find values ending with *</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-find-values-ending-with/m-p/1086191#M918517</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there anyway I can apply this as an action to a button?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 May 2016 21:01:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-find-values-ending-with/m-p/1086191#M918517</guid>
      <dc:creator />
      <dc:date>2016-05-05T21:01:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to find values ending with *</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-find-values-ending-with/m-p/1086192#M918518</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P class=""&gt;I think =flag = 1 should be searchable and should be good to use with burron action&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 May 2016 21:13:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-find-values-ending-with/m-p/1086192#M918518</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-05-05T21:13:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to find values ending with *</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-find-values-ending-with/m-p/1086193#M918519</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;Annamalai Muthappan wrote:&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Is there anyway I can apply this as an action to a button?&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Sure, should be possible using a Selection - Select in field action.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use field name&lt;/P&gt;&lt;P&gt;Field&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and as search string&lt;/P&gt;&lt;P&gt;='=Index(Field,''*'')'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[two single quotes around *, not a single double quote]&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 May 2016 21:16:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-find-values-ending-with/m-p/1086193#M918519</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2016-05-05T21:16:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to find values ending with *</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-find-values-ending-with/m-p/1086194#M918520</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Was out when you responded back, have created a sample using the flag method if you want to check it out &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 May 2016 21:58:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-find-values-ending-with/m-p/1086194#M918520</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-05-05T21:58:37Z</dc:date>
    </item>
  </channel>
</rss>

