<?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: like in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/like/m-p/1312317#M407771</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Time(Time#(Field, 'ss'), 'h:mm') as Field&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 11 May 2017 10:52:39 GMT</pubDate>
    <dc:creator>sunny_talwar</dc:creator>
    <dc:date>2017-05-11T10:52:39Z</dc:date>
    <item>
      <title>like</title>
      <link>https://community.qlik.com/t5/QlikView/like/m-p/1312310#M407764</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need a function that do like that : if Location like %RESTO%&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is there any function that do that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 May 2017 16:16:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/like/m-p/1312310#M407764</guid>
      <dc:creator>master_student</dc:creator>
      <dc:date>2017-05-09T16:16:09Z</dc:date>
    </item>
    <item>
      <title>Re: like</title>
      <link>https://community.qlik.com/t5/QlikView/like/m-p/1312311#M407765</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, it should be like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If(&lt;/STRONG&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;Location LIKE '*&lt;/STRONG&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;RESTO*', TrueCondition, FalseCondition)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 May 2017 16:18:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/like/m-p/1312311#M407765</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-05-09T16:18:08Z</dc:date>
    </item>
    <item>
      <title>Re: like</title>
      <link>https://community.qlik.com/t5/QlikView/like/m-p/1312312#M407766</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use directly like operation or &lt;STRONG&gt;WildMatch(Location,'*RESTO*')&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 May 2017 16:18:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/like/m-p/1312312#M407766</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-05-09T16:18:45Z</dc:date>
    </item>
    <item>
      <title>Re: like</title>
      <link>https://community.qlik.com/t5/QlikView/like/m-p/1312313#M407767</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you also use % as wildcard character? From the help:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE cellspacing="0" class="TableStyle-LeftBold" style="margin-right: auto;"&gt;&lt;TBODY&gt;&lt;TR class="Body-Body1"&gt;&lt;TD class="BodyE-Column1-Body1"&gt;&lt;SPAN style="background-color: #3399ff; color: #ffffff;"&gt;like&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD class="BodyD-Column2-Body1"&gt;String comparison with wildcard characters. The operation returns a boolean true (-1) if the string before the operator is matched by the string after the operator. The second string may contain the wildcard characters * (any number of arbitrary characters) or ? (one arbitrary character). &lt;/TD&gt;&lt;/TR&gt;&lt;TR class="Body-Body1"&gt;&lt;TD class="BodyE-Column1-Body1"&gt; &lt;/TD&gt;&lt;TD class="BodyD-Column2-Body1"&gt;&lt;P class="example"&gt;Examples:&lt;/P&gt;&lt;SPAN class="Code"&gt;'abc' &lt;SPAN style="background-color: #3399ff; color: #ffffff;"&gt;like&lt;/SPAN&gt; 'a*'&lt;/SPAN&gt; returns true (-1)&lt;BR /&gt;&lt;SPAN class="Code"&gt;'abcd' &lt;SPAN style="background-color: #3399ff; color: #ffffff;"&gt;like&lt;/SPAN&gt; 'a?c*'&lt;/SPAN&gt; returns true (-1) &lt;BR /&gt;&lt;SPAN class="Code"&gt;'abc' &lt;SPAN style="background-color: #3399ff; color: #ffffff;"&gt;like&lt;/SPAN&gt; 'a??bc'&lt;/SPAN&gt; returns false (0)&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 May 2017 16:24:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/like/m-p/1312313#M407767</guid>
      <dc:creator>stigchel</dc:creator>
      <dc:date>2017-05-09T16:24:05Z</dc:date>
    </item>
    <item>
      <title>Re: like</title>
      <link>https://community.qlik.com/t5/QlikView/like/m-p/1312314#M407768</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Like others have said, WILDMATCH is the way to go!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 May 2017 17:18:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/like/m-p/1312314#M407768</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-05-09T17:18:08Z</dc:date>
    </item>
    <item>
      <title>Re: like</title>
      <link>https://community.qlik.com/t5/QlikView/like/m-p/1312315#M407769</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you got the Correct Answer. Please flag the correct answer and helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 May 2017 17:20:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/like/m-p/1312315#M407769</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-05-09T17:20:21Z</dc:date>
    </item>
    <item>
      <title>Re: like</title>
      <link>https://community.qlik.com/t5/QlikView/like/m-p/1312316#M407770</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your reactions &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;) I appericiate your help. I have an other request, I have a filed TIME on second I would like to convert it into Hours / minute&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ANY IDEA please?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 May 2017 10:00:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/like/m-p/1312316#M407770</guid>
      <dc:creator>master_student</dc:creator>
      <dc:date>2017-05-11T10:00:02Z</dc:date>
    </item>
    <item>
      <title>Re: like</title>
      <link>https://community.qlik.com/t5/QlikView/like/m-p/1312317#M407771</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Time(Time#(Field, 'ss'), 'h:mm') as Field&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 May 2017 10:52:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/like/m-p/1312317#M407771</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-05-11T10:52:39Z</dc:date>
    </item>
  </channel>
</rss>

