<?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 in Expression in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Wildcard-in-Expression/m-p/1148494#M910877</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;did you try with set Analysis?&lt;/P&gt;&lt;P&gt;count({&amp;lt;UPC={'RP*'},Status={'Low'}&amp;gt;}yourfield)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 08 Jun 2016 08:28:04 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2016-06-08T08:28:04Z</dc:date>
    <item>
      <title>Wildcard in Expression</title>
      <link>https://community.qlik.com/t5/QlikView/Wildcard-in-Expression/m-p/1148493#M910876</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;I'm looking to create a bar chart based on an expression that will need a wildcard search. So I have a column called UPC, in which there are codes, like RM1234, AB1234, TF1234 etc.&amp;nbsp; I need to pull out where the code = only RM. there is a further criteria to the expression in that I need to pull out only where there the Status field = 'Low', So i have the expression, Count(IF(UPC='RM*' and Status ='Low', '1')) but it's not working. The expression is ok but no data is pulling through.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kev&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/Wildcard-in-Expression/m-p/1148493#M910876</guid>
      <dc:creator>kevbrown</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Wildcard in Expression</title>
      <link>https://community.qlik.com/t5/QlikView/Wildcard-in-Expression/m-p/1148494#M910877</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;did you try with set Analysis?&lt;/P&gt;&lt;P&gt;count({&amp;lt;UPC={'RP*'},Status={'Low'}&amp;gt;}yourfield)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Jun 2016 08:28:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Wildcard-in-Expression/m-p/1148494#M910877</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-06-08T08:28:04Z</dc:date>
    </item>
    <item>
      <title>Re: Wildcard in Expression</title>
      <link>https://community.qlik.com/t5/QlikView/Wildcard-in-Expression/m-p/1148495#M910878</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;EM&gt;Hi Kevi,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;You can try either below expression&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Count(IF(Wildmatch(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;UPC&lt;/SPAN&gt;, '&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;RM&lt;/SPAN&gt;*') and &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Status &lt;/SPAN&gt;='&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Low&lt;/SPAN&gt;', '1'))&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Or&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Count(IF(&lt;/SPAN&gt;&lt;SPAN style="line-height: 1.5em; color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;UPC &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;like '&lt;/SPAN&gt;&lt;SPAN style="line-height: 1.5em; color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;RM&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;*' and &lt;/SPAN&gt;&lt;SPAN style="line-height: 1.5em; color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Status&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt; ='&lt;/SPAN&gt;&lt;SPAN style="line-height: 1.5em; color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Low&lt;/SPAN&gt;&lt;/EM&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;EM&gt;', '1'))&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Jun 2016 08:33:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Wildcard-in-Expression/m-p/1148495#M910878</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2016-06-08T08:33:36Z</dc:date>
    </item>
    <item>
      <title>Re: Wildcard in Expression</title>
      <link>https://community.qlik.com/t5/QlikView/Wildcard-in-Expression/m-p/1148496#M910879</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is a good solution that should solve the problem. If this selection of RM and Low is something you would use in multiple places would I create flags for it in the script instead; either to use in the set analysis or to count on ex&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: 13px;"&gt;IF(UPC='RM*' and Status ='Low', 1,0) as _RMLow_Flag&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: 13px;"&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: 13px;"&gt;and then in the front end just do a count(_RMLow_Flag). This also gives you an option to get a percentage of how many of your instances that are just RM Low which can come handy.&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: 13px;"&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: 13px;"&gt;Good luck! &lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Jun 2016 08:36:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Wildcard-in-Expression/m-p/1148496#M910879</guid>
      <dc:creator />
      <dc:date>2016-06-08T08:36:17Z</dc:date>
    </item>
    <item>
      <title>Re: Wildcard in Expression</title>
      <link>https://community.qlik.com/t5/QlikView/Wildcard-in-Expression/m-p/1148497#M910880</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;count({$&amp;lt;Status={"Low"},UPC={"RM*"}&amp;gt;}UPC)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Jun 2016 08:36:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Wildcard-in-Expression/m-p/1148497#M910880</guid>
      <dc:creator />
      <dc:date>2016-06-08T08:36:40Z</dc:date>
    </item>
    <item>
      <title>Re: Wildcard in Expression</title>
      <link>https://community.qlik.com/t5/QlikView/Wildcard-in-Expression/m-p/1148498#M910881</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;You could use the following: &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Count(IF(WildMatch(UPC,"RM*") and Status ='Low', 1))&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or use set analysis&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Count({&amp;lt;UPC={"RP*"},Status={'Low'}&amp;gt;} 1)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See here when to use double quotes or single quotes&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/blogs/qlikviewdesignblog/2013/04/09/quoteology#comment-17692" title="https://community.qlik.com/blogs/qlikviewdesignblog/2013/04/09/quoteology#comment-17692"&gt;https://community.qlik.com/blogs/qlikviewdesignblog/2013/04/09/quoteology#comment-17692&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Jun 2016 09:47:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Wildcard-in-Expression/m-p/1148498#M910881</guid>
      <dc:creator>pho3nix90</dc:creator>
      <dc:date>2016-06-08T09:47:40Z</dc:date>
    </item>
    <item>
      <title>Re: Wildcard in Expression</title>
      <link>https://community.qlik.com/t5/QlikView/Wildcard-in-Expression/m-p/1148499#M910882</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;=Count({&amp;lt;UPC={"RM*"},Status={"Low"}&amp;gt;}1)&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;or&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Count(if(wildmatch(UPC,'RM*') and Status='Low',1)&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;or&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Count(if (UPC like 'RM*' and &lt;SPAN style="font-size: 13.3333px;"&gt;Status='Low',1)&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;I would suggest to use set analysis expression&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Jun 2016 09:59:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Wildcard-in-Expression/m-p/1148499#M910882</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2016-06-08T09:59:21Z</dc:date>
    </item>
    <item>
      <title>Re: Wildcard in Expression</title>
      <link>https://community.qlik.com/t5/QlikView/Wildcard-in-Expression/m-p/1148500#M910883</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Superb, thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Jun 2016 10:05:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Wildcard-in-Expression/m-p/1148500#M910883</guid>
      <dc:creator>kevbrown</dc:creator>
      <dc:date>2016-06-08T10:05:38Z</dc:date>
    </item>
    <item>
      <title>Re: Wildcard in Expression</title>
      <link>https://community.qlik.com/t5/QlikView/Wildcard-in-Expression/m-p/1148501#M910884</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi kevin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is better to use set analysis instead if conditions&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Jun 2016 10:09:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Wildcard-in-Expression/m-p/1148501#M910884</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2016-06-08T10:09:22Z</dc:date>
    </item>
  </channel>
</rss>

