<?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 Conditional text box help in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Conditional-text-box-help/m-p/1019442#M930367</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have this scenario&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a parameter (Client) which can have a lot of fixed values (e.g A, B, C, D, E, F, G).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a text box that I want to show when Client = A or B or C or any combination of the 3 (we could have one selected or 2 or 3). The text box will be hidden when any other value is selected.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea how I can do that? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Doing an if(Match(Client,A,B,C),0,1) does not return a 0 when A, B and C are all selected or any combination of 2 of the 3 are selected. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please advise.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;BR /&gt;Amit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
    <dc:creator />
    <dc:date>2020-11-25T16:16:04Z</dc:date>
    <item>
      <title>Conditional text box help</title>
      <link>https://community.qlik.com/t5/QlikView/Conditional-text-box-help/m-p/1019442#M930367</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have this scenario&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a parameter (Client) which can have a lot of fixed values (e.g A, B, C, D, E, F, G).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a text box that I want to show when Client = A or B or C or any combination of the 3 (we could have one selected or 2 or 3). The text box will be hidden when any other value is selected.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea how I can do that? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Doing an if(Match(Client,A,B,C),0,1) does not return a 0 when A, B and C are all selected or any combination of 2 of the 3 are selected. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please advise.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;BR /&gt;Amit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditional-text-box-help/m-p/1019442#M930367</guid>
      <dc:creator />
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional text box help</title>
      <link>https://community.qlik.com/t5/QlikView/Conditional-text-box-help/m-p/1019443#M930368</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be this as your hide/show condition:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SubStringCount(Concat(DISTINCT Client, '|'), 'A') = 1 or&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13.3333px;"&gt;SubStringCount(Concat(DISTINCT Client, '|'), 'B') = 1 or&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;SubStringCount(Concat(DISTINCT Client, '|'), 'C') = 1&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Mar 2016 16:25:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditional-text-box-help/m-p/1019443#M930368</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-03-07T16:25:43Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional text box help</title>
      <link>https://community.qlik.com/t5/QlikView/Conditional-text-box-help/m-p/1019444#M930369</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Write the below expression in Conditional of Layout tab of text object&lt;BR /&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;=if(wildmatch(getfieldselections(Client),'*A*') or&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; wildmatch(getfieldselections(Client),'*B*') or&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; wildmatch(getfieldselections(Client),'*C*'),1,0)&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Mar 2016 16:31:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditional-text-box-help/m-p/1019444#M930369</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2016-03-07T16:31:08Z</dc:date>
    </item>
  </channel>
</rss>

