<?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: How to identify that field have multiple values selected in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-identify-that-field-have-multiple-values-selected/m-p/1091491#M464801</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;=If(&lt;SPAN style="color: #ff0000;"&gt;SubStringCount(Concat(DISTINCT '|' &amp;amp; Day &amp;amp; '|'),'|M|') = 1&lt;/SPAN&gt;, RGB(0,0, 0), RGB(255, 255, 255))&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 11 Apr 2016 11:22:50 GMT</pubDate>
    <dc:creator>sunny_talwar</dc:creator>
    <dc:date>2016-04-11T11:22:50Z</dc:date>
    <item>
      <title>How to identify that field have multiple values selected</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-identify-that-field-have-multiple-values-selected/m-p/1091489#M464799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've a field named Day;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And I've 5 buttons with an action "Alter Selection"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;I have 5 buttons:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Monday&lt;UL style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;LI style="margin-top: 0.5ex; margin-bottom: 0.5ex; font-weight: inherit; font-style: inherit; font-family: inherit; list-style-type: inherit;"&gt;Alter Selection -&amp;gt; W_Day = ‘M’&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;Thursday&lt;UL&gt;&lt;LI style="margin-top: 0.5ex; margin-bottom: 0.5ex; font-weight: inherit; font-style: inherit; font-family: inherit; list-style-type: inherit;"&gt;Alter Selection -&amp;gt; W_Day = ‘T’&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;Wednesday&lt;UL&gt;&lt;LI style="margin-top: 0.5ex; margin-bottom: 0.5ex; font-weight: inherit; font-style: inherit; font-family: inherit; list-style-type: inherit;"&gt;Alter Selection -&amp;gt; W_Day = ‘W’&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;Tuesday&lt;UL&gt;&lt;LI style="margin-top: 0.5ex; margin-bottom: 0.5ex; font-weight: inherit; font-style: inherit; font-family: inherit; list-style-type: inherit;"&gt;Alter Selection -&amp;gt; W_Day = ‘Tu’&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;Friday&lt;UL&gt;&lt;LI style="margin-top: 0.5ex; margin-bottom: 0.5ex; font-weight: inherit; font-style: inherit; font-family: inherit; list-style-type: inherit;"&gt;Alter Selection -&amp;gt; W_Day = ‘F’&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want now that my buttons change it colour based on selection. For example, for the first button I'm trying:&lt;BR /&gt;&lt;BR /&gt;=IF(MATCH(Day,'M') ,RGB(0,0, 0), RGB(255, 255, 255))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I only have the value 'M' selected, it works fine but I select other values it changes... I already try with Day = ('M' | 'T') but it do what I want...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Apr 2016 11:20:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-identify-that-field-have-multiple-values-selected/m-p/1091489#M464799</guid>
      <dc:creator />
      <dc:date>2016-04-11T11:20:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to identify that field have multiple values selected</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-identify-that-field-have-multiple-values-selected/m-p/1091490#M464800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;did u try&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px;"&gt;=IF(MATCH(Day,&lt;STRONG&gt;'M','T','W','Tu','F')&lt;/STRONG&gt; ,RGB(0,0, 0), RGB(255, 255, 255))&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Apr 2016 11:21:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-identify-that-field-have-multiple-values-selected/m-p/1091490#M464800</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2016-04-11T11:21:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to identify that field have multiple values selected</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-identify-that-field-have-multiple-values-selected/m-p/1091491#M464801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;=If(&lt;SPAN style="color: #ff0000;"&gt;SubStringCount(Concat(DISTINCT '|' &amp;amp; Day &amp;amp; '|'),'|M|') = 1&lt;/SPAN&gt;, RGB(0,0, 0), RGB(255, 255, 255))&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Apr 2016 11:22:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-identify-that-field-have-multiple-values-selected/m-p/1091491#M464801</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-04-11T11:22:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to identify that field have multiple values selected</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-identify-that-field-have-multiple-values-selected/m-p/1091492#M464802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try =if(max(match(Day, 'M')), &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;RGB(0,0, 0), RGB(255, 255, 255))&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Apr 2016 11:23:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-identify-that-field-have-multiple-values-selected/m-p/1091492#M464802</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2016-04-11T11:23:37Z</dc:date>
    </item>
  </channel>
</rss>

