<?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: Set Analysis in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Set-Analysis/m-p/1663918#M729020</link>
    <description>&lt;P&gt;try like this:&lt;/P&gt;&lt;P&gt;=sum({&amp;lt;Name={"=Wildmatch(Name,'*1-Blcok search*')=1"}&amp;gt;}Data)&lt;/P&gt;</description>
    <pubDate>Thu, 09 Jan 2020 08:07:23 GMT</pubDate>
    <dc:creator>Frank_Hartmann</dc:creator>
    <dc:date>2020-01-09T08:07:23Z</dc:date>
    <item>
      <title>Set Analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis/m-p/1663909#M729018</link>
      <description>&lt;P&gt;I am using set analysi in which i need to include the string which has "&lt;STRONG&gt;1-Blcok search&lt;/STRONG&gt;" but the problem is there are many places where this is in the middle and some time it is after one word&lt;BR /&gt;how do i deal with this kind of situation .&lt;BR /&gt;As shown in below "1-Blcok search" some times it is only that , and in the end&amp;nbsp; row it is in the middle and some time is in the last .&lt;BR /&gt;&lt;BR /&gt;1-Blcok search&lt;BR /&gt;Build 1-Blcok search&lt;BR /&gt;Cosmatics 1-Blcok search Build&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;How do in include such thing in set analysis ?&lt;BR /&gt;&lt;BR /&gt;Thanks in Advance&lt;/P&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis/m-p/1663909#M729018</guid>
      <dc:creator>smilingjohn</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis/m-p/1663915#M729019</link>
      <description>&lt;P&gt;Try like&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Load If(Match(FieldName, '1-Blcok search'), 1,0) as Flag From Table;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Then in analysis use an ex,&amp;nbsp;&lt;STRONG&gt;Sum(&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;{&amp;lt;Flag={1}&amp;gt;} Sales)&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jan 2020 08:03:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis/m-p/1663915#M729019</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2020-01-09T08:03:20Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis/m-p/1663918#M729020</link>
      <description>&lt;P&gt;try like this:&lt;/P&gt;&lt;P&gt;=sum({&amp;lt;Name={"=Wildmatch(Name,'*1-Blcok search*')=1"}&amp;gt;}Data)&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jan 2020 08:07:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis/m-p/1663918#M729020</guid>
      <dc:creator>Frank_Hartmann</dc:creator>
      <dc:date>2020-01-09T08:07:23Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis/m-p/1663947#M729021</link>
      <description>&lt;P&gt;Thanks for the reply Frank.&lt;BR /&gt;This is working for one search , when i add many search within this is is not working&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;=sum({&amp;lt;Name={"=Wildmatch(Name,'*1-Blcok search*','*2-Cosmatics*','*H1-Blood'*)=1"}&amp;gt;}Data)&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Do I need to make changes to set analysis ?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jan 2020 09:04:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis/m-p/1663947#M729021</guid>
      <dc:creator>smilingjohn</dc:creator>
      <dc:date>2020-01-09T09:04:54Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis/m-p/1663950#M729022</link>
      <description>&lt;P&gt;maybe use the "or" operator like this:&lt;/P&gt;&lt;P&gt;=sum({&amp;lt;Name={"=Wildmatch(Name,'*1-Blcok search*')=1 or Wildmatch(Name,'*H1-Blood*')=1"}&amp;gt;}Data)&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jan 2020 09:15:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis/m-p/1663950#M729022</guid>
      <dc:creator>Frank_Hartmann</dc:creator>
      <dc:date>2020-01-09T09:15:41Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis/m-p/1663952#M729023</link>
      <description>&lt;P&gt;Just add and correct:&lt;/P&gt;&lt;P&gt;=sum({&amp;lt;Name={"=Wildmatch(Name,'*1-Blcok search*','*2-Cosmatics*','*H1-Blood&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;*'&lt;/STRONG&gt;&lt;/FONT&gt;)&lt;FONT size="5" color="#FF0000"&gt;&lt;STRONG&gt;&amp;gt;&lt;/STRONG&gt;&lt;/FONT&gt;=1"}&amp;gt;}Data)&lt;/P&gt;&lt;P&gt;whereby the wildmatch isn't really needed else it should also work with:&lt;/P&gt;&lt;P&gt;=sum({&amp;lt;Name={'*1-Blcok search*','*2-Cosmatics*','*H1-Blood*'}&amp;gt;}Data)&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jan 2020 09:18:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis/m-p/1663952#M729023</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2020-01-09T09:18:52Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis/m-p/1663956#M729024</link>
      <description>&lt;P&gt;Hi John,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Why can't&amp;nbsp; you create flag in script level&amp;nbsp; and make it easy in expreesion level.&lt;/P&gt;&lt;P&gt;thank you&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nagarjun&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jan 2020 09:26:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis/m-p/1663956#M729024</guid>
      <dc:creator>Nagarjun_km</dc:creator>
      <dc:date>2020-01-09T09:26:47Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis/m-p/1663968#M729025</link>
      <description>&lt;P&gt;Thanks Frank&lt;/P&gt;&lt;P&gt;This is working , To exclude this can i use the below expression I doubt this .&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;sum({&amp;lt;Name-={"=Wildmatch(Name,'*1-Blcok search*') or Wildmatch(Name,'*H1-Blood*')=1"}&amp;gt;}Data)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jan 2020 09:47:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis/m-p/1663968#M729025</guid>
      <dc:creator>smilingjohn</dc:creator>
      <dc:date>2020-01-09T09:47:03Z</dc:date>
    </item>
  </channel>
</rss>

