<?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 Like function in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Like-function/m-p/766432#M666151</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;How can i Count &lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit; text-decoration: underline;"&gt;ID&lt;/SPAN&gt; if the &lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit; text-decoration: underline;"&gt;NAME&lt;/SPAN&gt; start with 'A'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;I try this expression&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Count(&amp;nbsp; if&amp;nbsp; (Like (Name = 'A*') , ID )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;but it s not working&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 18 Nov 2014 07:43:57 GMT</pubDate>
    <dc:creator>ch_riadh</dc:creator>
    <dc:date>2014-11-18T07:43:57Z</dc:date>
    <item>
      <title>Like function</title>
      <link>https://community.qlik.com/t5/QlikView/Like-function/m-p/766432#M666151</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;How can i Count &lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit; text-decoration: underline;"&gt;ID&lt;/SPAN&gt; if the &lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit; text-decoration: underline;"&gt;NAME&lt;/SPAN&gt; start with 'A'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;I try this expression&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Count(&amp;nbsp; if&amp;nbsp; (Like (Name = 'A*') , ID )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;but it s not working&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2014 07:43:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Like-function/m-p/766432#M666151</guid>
      <dc:creator>ch_riadh</dc:creator>
      <dc:date>2014-11-18T07:43:57Z</dc:date>
    </item>
    <item>
      <title>Re: Like function</title>
      <link>https://community.qlik.com/t5/QlikView/Like-function/m-p/766433#M666152</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/thread/142544"&gt;Like Function ?&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Count(IF(Name Like 'A*',ID))&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;Count({&amp;lt;Name = {'A*'}&amp;gt;}ID)&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;COUNT(If(WildMatch(Name,'A*'),ID))&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;In your script, create a field as IDFlag just below the Name Field&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If(Name Like 'A*',1,0) as IDFlag&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now You can use as below&lt;/P&gt;&lt;P&gt;SUM({&amp;lt;IDFlag = {1}&amp;gt;}IDFlag)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2014 07:52:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Like-function/m-p/766433#M666152</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2014-11-18T07:52:58Z</dc:date>
    </item>
    <item>
      <title>Re: Like function</title>
      <link>https://community.qlik.com/t5/QlikView/Like-function/m-p/766434#M666153</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;Check this&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10pt; line-height: 1.5em;"&gt;Count({&amp;lt;Name={'A*'}&amp;gt;} ID)&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: 10pt; line-height: 1.5em;"&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: 10pt; line-height: 1.5em;"&gt;Please do not create multiple threads.&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: 10pt; line-height: 1.5em;"&gt;Its answered here.&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: 10pt; line-height: 1.5em;"&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/thread/142544"&gt;http://community.qlik.com/thread/142544&lt;/A&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: 10pt; line-height: 1.5em;"&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: 10pt; line-height: 1.5em;"&gt;Regards&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: 10pt; line-height: 1.5em;"&gt;ASHFAQ&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2014 07:53:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Like-function/m-p/766434#M666153</guid>
      <dc:creator>ashfaq_haseeb</dc:creator>
      <dc:date>2014-11-18T07:53:47Z</dc:date>
    </item>
  </channel>
</rss>

