<?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: Compare Match in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/unreadable-title/m-p/1371936#M618148</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there any relation between two tables that you are loading?? If not, i think we should create one and then replace &lt;/P&gt;&lt;P&gt;&lt;EM style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Name and Name2 with &lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Assetname &lt;/STRONG&gt;and &lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Item .&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 09 May 2017 04:48:18 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2017-05-09T04:48:18Z</dc:date>
    <item>
      <title>?</title>
      <link>https://community.qlik.com/t5/QlikView/unreadable-title/m-p/1371930#M618142</link>
      <description>&lt;P&gt;.&lt;/P&gt;</description>
      <pubDate>Sun, 14 Apr 2019 14:35:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/unreadable-title/m-p/1371930#M618142</guid>
      <dc:creator>xyz1</dc:creator>
      <dc:date>2019-04-14T14:35:03Z</dc:date>
    </item>
    <item>
      <title>Re: Compare Match</title>
      <link>https://community.qlik.com/t5/QlikView/unreadable-title/m-p/1371932#M618144</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you trying to get the output in front-end (may be in a text box)? Is your comparison case sensitive?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 May 2017 11:27:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/unreadable-title/m-p/1371932#M618144</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2017-05-05T11:27:47Z</dc:date>
    </item>
    <item>
      <title>?</title>
      <link>https://community.qlik.com/t5/QlikView/unreadable-title/m-p/1371933#M618145</link>
      <description>&lt;P&gt;.&lt;/P&gt;</description>
      <pubDate>Sun, 14 Apr 2019 14:36:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/unreadable-title/m-p/1371933#M618145</guid>
      <dc:creator>xyz1</dc:creator>
      <dc:date>2019-04-14T14:36:01Z</dc:date>
    </item>
    <item>
      <title>Re: Compare Match</title>
      <link>https://community.qlik.com/t5/QlikView/unreadable-title/m-p/1371934#M618146</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try expression like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For case INsensitive match (in text box)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;='All match : ' &amp;amp; If(not Max(upper(Name)=upper(Name2)), 'NO', 'YES')&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Case sensitive&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;='All match : ' &amp;amp; If(not Max(Name=Name2), 'NO', 'YES')&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;To get the list of names:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;='Not Matched Name : ' &amp;amp; Concat( Distinct If(not Name=Name2,&amp;nbsp; Name), ',')&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-size: 13.3333px;"&gt;&lt;EM&gt;='Not Matched Name2 : ' &amp;amp; Concat( Distinct If(not Name=Name2,&amp;nbsp; Name2), ',')&lt;/EM&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-size: 13.3333px;"&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-size: 13.3333px;"&gt;&lt;EM&gt;If you need case insensitive result, just use upper()/lower() like shown above.&lt;/EM&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-size: 13.3333px;"&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-size: 13.3333px;"&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 May 2017 12:28:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/unreadable-title/m-p/1371934#M618146</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2017-05-05T12:28:08Z</dc:date>
    </item>
    <item>
      <title>?</title>
      <link>https://community.qlik.com/t5/QlikView/unreadable-title/m-p/1371935#M618147</link>
      <description>&lt;P&gt;.&lt;/P&gt;</description>
      <pubDate>Sun, 14 Apr 2019 14:36:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/unreadable-title/m-p/1371935#M618147</guid>
      <dc:creator>xyz1</dc:creator>
      <dc:date>2019-04-14T14:36:30Z</dc:date>
    </item>
    <item>
      <title>Re: Compare Match</title>
      <link>https://community.qlik.com/t5/QlikView/unreadable-title/m-p/1371936#M618148</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there any relation between two tables that you are loading?? If not, i think we should create one and then replace &lt;/P&gt;&lt;P&gt;&lt;EM style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Name and Name2 with &lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Assetname &lt;/STRONG&gt;and &lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Item .&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 May 2017 04:48:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/unreadable-title/m-p/1371936#M618148</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-05-09T04:48:18Z</dc:date>
    </item>
  </channel>
</rss>

