<?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: Wildcard question in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Wildcard-question/m-p/678270#M10257</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;is John or john (first J is capital)?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 24 Sep 2014 05:11:13 GMT</pubDate>
    <dc:creator>ecolomer</dc:creator>
    <dc:date>2014-09-24T05:11:13Z</dc:date>
    <item>
      <title>Wildcard question</title>
      <link>https://community.qlik.com/t5/App-Development/Wildcard-question/m-p/678269#M10256</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 am looking for help for a simple wildcard issue I am over looking. I have a data table where I am trying to change the background color when a certain name string is returned.&amp;nbsp; I can't seem to figure out the correct syntax.&amp;nbsp; Here is my example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;names:&lt;/P&gt;&lt;P&gt;John&lt;/P&gt;&lt;P&gt;John Smith&lt;/P&gt;&lt;P&gt;John Adams&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;syntax:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;if([field]='john*', blue())&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Looking for help on step I am missing to correct. &lt;/P&gt;&lt;P&gt;Thank you in advance. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Sep 2014 05:00:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Wildcard-question/m-p/678269#M10256</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-09-24T05:00:35Z</dc:date>
    </item>
    <item>
      <title>Re: Wildcard question</title>
      <link>https://community.qlik.com/t5/App-Development/Wildcard-question/m-p/678270#M10257</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;is John or john (first J is capital)?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Sep 2014 05:11:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Wildcard-question/m-p/678270#M10257</guid>
      <dc:creator>ecolomer</dc:creator>
      <dc:date>2014-09-24T05:11:13Z</dc:date>
    </item>
    <item>
      <title>Re: Wildcard question</title>
      <link>https://community.qlik.com/t5/App-Development/Wildcard-question/m-p/678271#M10258</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;Try like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 16px;"&gt;if(Lower([field]) like 'john*', blue())&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 16px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 16px;"&gt;OR&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 16px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 16px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;if(WildMatch(Lower([field]), 'john*'), blue())&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 16px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 16px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Hope this helps you.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 16px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 16px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 16px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;jagan.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Sep 2014 05:45:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Wildcard-question/m-p/678271#M10258</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2014-09-24T05:45:16Z</dc:date>
    </item>
    <item>
      <title>Re: Wildcard question</title>
      <link>https://community.qlik.com/t5/App-Development/Wildcard-question/m-p/678272#M10259</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The reason in this case can be as Enrique points out, but it can also be that [field] does not equal a distinct value. A reference to a field will be calculated in the same way as a Only() call. In this case try running Only([field]) to see that it actually returns a comparable value. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to suggest that you look in to using for example Wildmatch() to identify which wildcard string the compared value matches. In combination with Pick() you can then pick a specific expression to execute depending on the outcome of your WildMatch(). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.qlik.com/sense/en-US/online/index.html#../Subsystems/WorkingWith/Content/Scripting/ConditionalFunctions/ConditionalFunctions.htm%3FTocPath%3DWorking%2520with%2520Qlik%2520Sense%7CScript%2520syntax%2520and%2520chart%2520functions%7CFunctions%2520in%2520scripts%2520and%2520chart%2520expressions%7CConditional%2520functions%7C_____0" style="font-size: 10pt; line-height: 1.5em;" title="https://help.qlik.com/sense/en-US/online/index.html#../Subsystems/WorkingWith/Content/Scripting/ConditionalFunctions/ConditionalFunctions.htm%3FTocPath%3DWorking%2520with%2520Qlik%2520Sense%7CScript%2520syntax%2520and%2520chart%2520functions%7CFunctions%2520in%2520scripts%2520and%2520chart%2520expressions%7CConditional%2520functions%7C_____0"&gt;https://help.qlik.com/sense/en-US/online/index.html#../Subsystems/WorkingWith/Content/Scripting/ConditionalFunctions/Con…&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Sep 2014 05:46:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Wildcard-question/m-p/678272#M10259</guid>
      <dc:creator>ToniKautto</dc:creator>
      <dc:date>2014-09-24T05:46:55Z</dc:date>
    </item>
    <item>
      <title>Re: Wildcard question</title>
      <link>https://community.qlik.com/t5/App-Development/Wildcard-question/m-p/678273#M10260</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just a small note. Wildmatch() is &lt;SPAN style="color: #444444; font-family: Arial, Helvetica, sans-serif;"&gt;case insensitive, so you actually do not have to make the Lower() call in that scenario.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.qlik.com/sense/en-US/online/index.html#../Subsystems/WorkingWith/Content/Scripting/ConditionalFunctions/wildmatch.htm%3FTocPath%3DWorking%2520with%2520Qlik%2520Sense%7CScript%2520syntax%2520and%2520chart%2520functions%7CFunctions%2520in%2520scripts%2520and%2520chart%2520expressions%7CConditional%2520functions%7C_____7" title="https://help.qlik.com/sense/en-US/online/index.html#../Subsystems/WorkingWith/Content/Scripting/ConditionalFunctions/wildmatch.htm%3FTocPath%3DWorking%2520with%2520Qlik%2520Sense%7CScript%2520syntax%2520and%2520chart%2520functions%7CFunctions%2520in%2520scripts%2520and%2520chart%2520expressions%7CConditional%2520functions%7C_____7"&gt;https://help.qlik.com/sense/en-US/online/index.html#../Subsystems/WorkingWith/Content/Scripting/ConditionalFunctions/wil…&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Sep 2014 05:49:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Wildcard-question/m-p/678273#M10260</guid>
      <dc:creator>ToniKautto</dc:creator>
      <dc:date>2014-09-24T05:49:10Z</dc:date>
    </item>
    <item>
      <title>Re: Wildcard question</title>
      <link>https://community.qlik.com/t5/App-Development/Wildcard-question/m-p/678274#M10261</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Toni and Jagan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you for the help. That solved it. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Justin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Sep 2014 12:29:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Wildcard-question/m-p/678274#M10261</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-09-26T12:29:09Z</dc:date>
    </item>
    <item>
      <title>Re: Wildcard question</title>
      <link>https://community.qlik.com/t5/App-Development/Wildcard-question/m-p/678275#M10262</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am glad to hear the issue is resolved. Please remember to mark answers as correct or helpful, so that other community members know that further assistance is not needed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Sep 2014 13:18:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Wildcard-question/m-p/678275#M10262</guid>
      <dc:creator>ToniKautto</dc:creator>
      <dc:date>2014-09-26T13:18:57Z</dc:date>
    </item>
  </channel>
</rss>

