<?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 - Search String in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Set-Analysis-Search-String/m-p/930265#M321694</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is two special operators called &lt;STRONG&gt;&lt;EM&gt;precedes&lt;/EM&gt;&lt;/STRONG&gt; and &lt;STRONG&gt;&lt;EM&gt;follows&lt;/EM&gt;&lt;/STRONG&gt; that could be used in your case I think:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM&gt;SUM({$&amp;lt;UniqueID= {“=FieldX precedes '$(Variable)'”}&amp;gt;} MeasureField)&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Here is the documentation of precedes and follows from the manual:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;H1&gt;&lt;A name="kanchor1007"&gt;&lt;/A&gt;Relational Operators&lt;/H1&gt;&lt;P&gt;All relational operators compare the values of the operands and return true (-1) or false (0) as the result. All relational operators are binary.&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;SPAN class="Bold"&gt;&amp;lt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD&gt;Less than&lt;/TD&gt;&lt;TD&gt;A numeric comparison is made if both operands can be interpreted numerically. The operation returns the logical value of the evaluation of the comparison.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;SPAN class="Bold"&gt;&amp;lt;=&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD&gt;Less than or equal&lt;/TD&gt;&lt;TD&gt;A numeric comparison is made if both operands can be interpreted numerically. The operation returns the logical value of the evaluation of the comparison.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;SPAN class="Bold"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD&gt;Greater than&lt;/TD&gt;&lt;TD&gt;A numeric comparison is made if both operands can be interpreted numerically. The operation returns the logical value of the evaluation of the comparison.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;SPAN class="Bold"&gt;&amp;gt;=&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD&gt;Greater than or equal&lt;/TD&gt;&lt;TD&gt;A numeric comparison is made if both operands can be interpreted numerically. The operation returns the logical value of the evaluation of the comparison.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;SPAN class="Bold"&gt;=&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD&gt;Equals&lt;/TD&gt;&lt;TD&gt;A numeric comparison is made if both operands can be interpreted numerically. The operation returns the logical value of the evaluation of the comparison.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;SPAN class="Bold"&gt;&amp;lt;&amp;gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD&gt;Not equivalent to&lt;/TD&gt;&lt;TD&gt;A numeric comparison is made if both operands can be interpreted numerically. The operation returns the logical value of the evaluation of the comparison.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;SPAN class="Bold"&gt;&lt;STRONG&gt;precedes&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD&gt;ASCII less than&lt;/TD&gt;&lt;TD&gt;Unlike the &lt;SPAN class="Bold"&gt;&amp;lt;&lt;/SPAN&gt;operator no attempt is made to make a numeric interpretation of the argument values before the comparison. The operation returns true if the value to the left of the operator has a text representation which, in ASCII comparison, comes before the text representation of the value on the right.&lt;P class="example"&gt;Example:&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Code"&gt;' 11' precedes ' 2'&lt;/SPAN&gt; returns true&lt;/P&gt;&lt;P&gt;compare this to:&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Code"&gt;' 11' &amp;lt; ' 2'&lt;/SPAN&gt; returns false&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;SPAN class="Bold"&gt;&lt;STRONG&gt;follows&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD&gt;ASCII greater than&lt;/TD&gt;&lt;TD&gt;Unlike the &lt;SPAN class="Bold"&gt;&amp;gt;&lt;/SPAN&gt;operator no attempt is made to make a numeric interpretation of the argument values before the comparison. The operation returns true if the value to the left of the operator has a text representation which, in ASCII comparison, comes after the text representation of the value on the right.&lt;P class="example"&gt;Example:&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Code"&gt;' 23' follows ' 111'&lt;/SPAN&gt; returns true&lt;/P&gt;&lt;P&gt;compare this to:&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Code"&gt;' 23' &amp;gt; ' 111'&lt;/SPAN&gt; returns false&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 24 Sep 2015 06:46:21 GMT</pubDate>
    <dc:creator>petter</dc:creator>
    <dc:date>2015-09-24T06:46:21Z</dc:date>
    <item>
      <title>Set Analysis - Search String</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-Search-String/m-p/930263#M321692</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible to do a greater than / less than on a string in set analysis, like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;SUM({$&amp;lt;Field= {“&amp;lt;= $(Variable)”}&amp;gt;} MeasureField)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where $(Variable) contains a string value?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If not, what should be a good work around for this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Björn&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Sep 2015 06:27:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-Search-String/m-p/930263#M321692</guid>
      <dc:creator />
      <dc:date>2015-09-24T06:27:09Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis - Search String</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-Search-String/m-p/930264#M321693</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What exactly does &lt;STRONG&gt;Variable&lt;/STRONG&gt; include (What String)?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Sep 2015 06:29:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-Search-String/m-p/930264#M321693</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-09-24T06:29:11Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis - Search String</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-Search-String/m-p/930265#M321694</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is two special operators called &lt;STRONG&gt;&lt;EM&gt;precedes&lt;/EM&gt;&lt;/STRONG&gt; and &lt;STRONG&gt;&lt;EM&gt;follows&lt;/EM&gt;&lt;/STRONG&gt; that could be used in your case I think:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM&gt;SUM({$&amp;lt;UniqueID= {“=FieldX precedes '$(Variable)'”}&amp;gt;} MeasureField)&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Here is the documentation of precedes and follows from the manual:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;H1&gt;&lt;A name="kanchor1007"&gt;&lt;/A&gt;Relational Operators&lt;/H1&gt;&lt;P&gt;All relational operators compare the values of the operands and return true (-1) or false (0) as the result. All relational operators are binary.&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;SPAN class="Bold"&gt;&amp;lt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD&gt;Less than&lt;/TD&gt;&lt;TD&gt;A numeric comparison is made if both operands can be interpreted numerically. The operation returns the logical value of the evaluation of the comparison.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;SPAN class="Bold"&gt;&amp;lt;=&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD&gt;Less than or equal&lt;/TD&gt;&lt;TD&gt;A numeric comparison is made if both operands can be interpreted numerically. The operation returns the logical value of the evaluation of the comparison.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;SPAN class="Bold"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD&gt;Greater than&lt;/TD&gt;&lt;TD&gt;A numeric comparison is made if both operands can be interpreted numerically. The operation returns the logical value of the evaluation of the comparison.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;SPAN class="Bold"&gt;&amp;gt;=&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD&gt;Greater than or equal&lt;/TD&gt;&lt;TD&gt;A numeric comparison is made if both operands can be interpreted numerically. The operation returns the logical value of the evaluation of the comparison.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;SPAN class="Bold"&gt;=&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD&gt;Equals&lt;/TD&gt;&lt;TD&gt;A numeric comparison is made if both operands can be interpreted numerically. The operation returns the logical value of the evaluation of the comparison.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;SPAN class="Bold"&gt;&amp;lt;&amp;gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD&gt;Not equivalent to&lt;/TD&gt;&lt;TD&gt;A numeric comparison is made if both operands can be interpreted numerically. The operation returns the logical value of the evaluation of the comparison.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;SPAN class="Bold"&gt;&lt;STRONG&gt;precedes&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD&gt;ASCII less than&lt;/TD&gt;&lt;TD&gt;Unlike the &lt;SPAN class="Bold"&gt;&amp;lt;&lt;/SPAN&gt;operator no attempt is made to make a numeric interpretation of the argument values before the comparison. The operation returns true if the value to the left of the operator has a text representation which, in ASCII comparison, comes before the text representation of the value on the right.&lt;P class="example"&gt;Example:&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Code"&gt;' 11' precedes ' 2'&lt;/SPAN&gt; returns true&lt;/P&gt;&lt;P&gt;compare this to:&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Code"&gt;' 11' &amp;lt; ' 2'&lt;/SPAN&gt; returns false&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;SPAN class="Bold"&gt;&lt;STRONG&gt;follows&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD&gt;ASCII greater than&lt;/TD&gt;&lt;TD&gt;Unlike the &lt;SPAN class="Bold"&gt;&amp;gt;&lt;/SPAN&gt;operator no attempt is made to make a numeric interpretation of the argument values before the comparison. The operation returns true if the value to the left of the operator has a text representation which, in ASCII comparison, comes after the text representation of the value on the right.&lt;P class="example"&gt;Example:&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Code"&gt;' 23' follows ' 111'&lt;/SPAN&gt; returns true&lt;/P&gt;&lt;P&gt;compare this to:&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Code"&gt;' 23' &amp;gt; ' 111'&lt;/SPAN&gt; returns false&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Sep 2015 06:46:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-Search-String/m-p/930265#M321694</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2015-09-24T06:46:21Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis - Search String</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-Search-String/m-p/930266#M321695</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;Can you specify exact requirement of your's.or better for string matching you can use WildMatch().&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Sep 2015 06:48:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-Search-String/m-p/930266#M321695</guid>
      <dc:creator>vijetas42</dc:creator>
      <dc:date>2015-09-24T06:48:46Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis - Search String</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-Search-String/m-p/930267#M321696</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be this helps:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Untitled.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/99913_Untitled.png" style="width: 620px; height: 222px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Exp:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Concat&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;({&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;String&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;={ &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;"=String&amp;gt;'BBB' "&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;}&amp;gt;} &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;String&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, '-') &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Sep 2015 06:50:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-Search-String/m-p/930267#M321696</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2015-09-24T06:50:06Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis - Search String</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-Search-String/m-p/930268#M321697</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be try this&lt;/P&gt;&lt;P&gt;SUM(if( Field&amp;lt;=Variable, MeasureField))&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;SUM(if( Field&amp;lt;=$(Variable), MeasureField))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Sep 2015 06:59:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-Search-String/m-p/930268#M321697</guid>
      <dc:creator>settu_periasamy</dc:creator>
      <dc:date>2015-09-24T06:59:20Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis - Search String</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-Search-String/m-p/930269#M321698</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG alt="Capture.JPG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/99914_Capture.JPG" style="height: 231px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Sep 2015 07:00:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-Search-String/m-p/930269#M321698</guid>
      <dc:creator>settu_periasamy</dc:creator>
      <dc:date>2015-09-24T07:00:40Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis - Search String</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-Search-String/m-p/930270#M321699</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG alt="2015-09-24 #2.png" class="jive-image image-1" src="/legacyfs/online/99915_2015-09-24 #2.png" style="height: 634px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Sep 2015 07:03:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-Search-String/m-p/930270#M321699</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2015-09-24T07:03:18Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis - Search String</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-Search-String/m-p/930271#M321700</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;EM&gt;Variable&lt;/EM&gt; contains one of fields of &lt;EM&gt;Field. &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Field&lt;/EM&gt; contains: SP_AAA, SP_BBB, SP_CCC&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Variable&lt;/EM&gt; contains: SP_BBB&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Sep 2015 12:08:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-Search-String/m-p/930271#M321700</guid>
      <dc:creator />
      <dc:date>2015-09-24T12:08:58Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis - Search String</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-Search-String/m-p/930272#M321701</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;IF you have greater than and lesser than parameters than you can try like this :&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;SUM({$&amp;lt;Field= {“&amp;gt;=&lt;EM style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;$(Variable2)&lt;/EM&gt;&amp;lt;= $(Variable)”}&amp;gt;} MeasureField)&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Sep 2015 12:28:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-Search-String/m-p/930272#M321701</guid>
      <dc:creator>avinashelite</dc:creator>
      <dc:date>2015-09-24T12:28:24Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis - Search String</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-Search-String/m-p/930273#M321702</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: inherit;"&gt;IF you have greater than and lesser than parameters than you can try like this :&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;&lt;EM style="font-weight: inherit;"&gt;SUM({$&amp;lt;Field= {“&amp;gt;=&lt;EM style="font-weight: inherit;"&gt;$(Variable2)&lt;/EM&gt;&amp;lt;= $(Variable)”}&amp;gt;} MeasureField)&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Sep 2015 16:09:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-Search-String/m-p/930273#M321702</guid>
      <dc:creator>avinashelite</dc:creator>
      <dc:date>2015-09-24T16:09:08Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis - Search String</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-Search-String/m-p/930274#M321703</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The point is that the greater than / lesser than functionality in set analysis won't work when the Variable contains a string value.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Sep 2015 05:52:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-Search-String/m-p/930274#M321703</guid>
      <dc:creator />
      <dc:date>2015-09-25T05:52:27Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis - Search String</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-Search-String/m-p/930275#M321704</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good workable solution without using Set Analysis, thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Sep 2015 05:54:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-Search-String/m-p/930275#M321704</guid>
      <dc:creator />
      <dc:date>2015-09-25T05:54:00Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis - Search String</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-Search-String/m-p/930276#M321705</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if you have got the answer please mark the correct answer and close this thread &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Sep 2015 05:55:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-Search-String/m-p/930276#M321705</guid>
      <dc:creator>avinashelite</dc:creator>
      <dc:date>2015-09-25T05:55:23Z</dc:date>
    </item>
    <item>
      <title>Re: Set Analysis - Search String</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-Search-String/m-p/930277#M321706</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, I did not know the precedes / follows operators and the way to use them in Set Analysis. I tried the following and it worked:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;SUM({$&amp;lt;Field= {“&lt;EM&gt;Field&lt;/EM&gt; precedes '$(Variable)'”}&amp;gt;} MeasureField)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I actually used the same field for both &lt;EM&gt;Field&lt;/EM&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Sep 2015 05:59:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-Search-String/m-p/930277#M321706</guid>
      <dc:creator />
      <dc:date>2015-09-25T05:59:43Z</dc:date>
    </item>
  </channel>
</rss>

