<?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: Conditionally  show the column based on two values in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Conditionally-show-the-column-based-on-two-values/m-p/1045652#M931844</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If it is your calculated dimension then try like this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=IF(Country='INDIA' or Country='USA', Country)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;If it is your expression then try like this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=sum({&amp;lt;Country={'INDIA','USA'}&amp;gt;} Sales)&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 10 Mar 2016 10:08:37 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2016-03-10T10:08:37Z</dc:date>
    <item>
      <title>Conditionally  show the column based on two values</title>
      <link>https://community.qlik.com/t5/QlikView/Conditionally-show-the-column-based-on-two-values/m-p/1045648#M931840</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;I created&amp;nbsp; a straight table in that i have few coulumns,want to disaply a coluimn based on another column two values&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have done getfieldselections(COUNTRY)=INDIA ,Its working but i want to give one more value &lt;/P&gt;&lt;P&gt;like &lt;SPAN style="font-size: 13.3333330154419px;"&gt;getfieldselections(COUNTRY)=INDIA and &lt;SPAN style="font-size: 13.3333330154419px;"&gt;getfieldselections(COUNTRY)=US &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;its not working for me it is working for only one value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please suggest for this&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/Conditionally-show-the-column-based-on-two-values/m-p/1045648#M931840</guid>
      <dc:creator />
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Conditionally  show the column based on two values</title>
      <link>https://community.qlik.com/t5/QlikView/Conditionally-show-the-column-based-on-two-values/m-p/1045649#M931841</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try with this =If(Match(GetFieldSelections(COUNTRY),'INDIA','US','JAPAN'), COUNTRY)&lt;/P&gt;&lt;P&gt;Vikas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Mar 2016 10:01:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditionally-show-the-column-based-on-two-values/m-p/1045649#M931841</guid>
      <dc:creator>vikasmahajan</dc:creator>
      <dc:date>2016-03-10T10:01:42Z</dc:date>
    </item>
    <item>
      <title>Re: Conditionally  show the column based on two values</title>
      <link>https://community.qlik.com/t5/QlikView/Conditionally-show-the-column-based-on-two-values/m-p/1045650#M931842</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(match(Country,'India','US'),1,0)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if( Country ='India' and Country='US',1,0)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Mar 2016 10:04:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditionally-show-the-column-based-on-two-values/m-p/1045650#M931842</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2016-03-10T10:04:14Z</dc:date>
    </item>
    <item>
      <title>Re: Conditionally  show the column based on two values</title>
      <link>https://community.qlik.com/t5/QlikView/Conditionally-show-the-column-based-on-two-values/m-p/1045651#M931843</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not sure if this is truly and requirement where you would make multiple selections in the COUNTRY filter or if this is just an or requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If its INDIA and US, try like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SubStringCount(Concat(DISTINCT COUNTRY, '|'), 'INDIA') = 1 and &lt;/STRONG&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;SubStringCount(Concat(DISTINCT COUNTRY, '|'), 'US') = 1&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If its INDIA or US&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13.3333px;"&gt;SubStringCount(Concat(DISTINCT COUNTRY, '|'), 'INDIA') = 1 or &lt;/STRONG&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;SubStringCount(Concat(DISTINCT COUNTRY, '|'), 'US') = 1&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Mar 2016 10:06:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditionally-show-the-column-based-on-two-values/m-p/1045651#M931843</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-03-10T10:06:01Z</dc:date>
    </item>
    <item>
      <title>Re: Conditionally  show the column based on two values</title>
      <link>https://community.qlik.com/t5/QlikView/Conditionally-show-the-column-based-on-two-values/m-p/1045652#M931844</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If it is your calculated dimension then try like this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=IF(Country='INDIA' or Country='USA', Country)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;If it is your expression then try like this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=sum({&amp;lt;Country={'INDIA','USA'}&amp;gt;} Sales)&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Mar 2016 10:08:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditionally-show-the-column-based-on-two-values/m-p/1045652#M931844</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-03-10T10:08:37Z</dc:date>
    </item>
    <item>
      <title>Re: Conditionally  show the column based on two values</title>
      <link>https://community.qlik.com/t5/QlikView/Conditionally-show-the-column-based-on-two-values/m-p/1045653#M931845</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kush,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its working for India or US&amp;nbsp; and &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i need third scenario like INDIA and US.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Means 1.India&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2.US&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3.INDIA and US&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for third scenario waht i need to do?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please do the needful&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Mar 2016 10:55:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditionally-show-the-column-based-on-two-values/m-p/1045653#M931845</guid>
      <dc:creator />
      <dc:date>2016-03-10T10:55:42Z</dc:date>
    </item>
    <item>
      <title>Re: Conditionally  show the column based on two values</title>
      <link>https://community.qlik.com/t5/QlikView/Conditionally-show-the-column-based-on-two-values/m-p/1045654#M931846</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Sunny&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;Its working for India or US&amp;nbsp; and &lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;i need third scenario like INDIA and US.&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;Means 1.India&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2.US&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3.INDIA and US&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;for third scenario waht i need to do?&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;Please do the needful&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Mar 2016 10:56:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditionally-show-the-column-based-on-two-values/m-p/1045654#M931846</guid>
      <dc:creator />
      <dc:date>2016-03-10T10:56:16Z</dc:date>
    </item>
    <item>
      <title>Re: Conditionally  show the column based on two values</title>
      <link>https://community.qlik.com/t5/QlikView/Conditionally-show-the-column-based-on-two-values/m-p/1045655#M931847</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;Its working for India or US&amp;nbsp; and&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;i need third scenario like INDIA and US.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;Means 1.India&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2.US&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3.INDIA and US&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;for third scenario waht i need to do?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;Please do the needful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Mar 2016 10:57:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditionally-show-the-column-based-on-two-values/m-p/1045655#M931847</guid>
      <dc:creator />
      <dc:date>2016-03-10T10:57:26Z</dc:date>
    </item>
    <item>
      <title>Re: Conditionally  show the column based on two values</title>
      <link>https://community.qlik.com/t5/QlikView/Conditionally-show-the-column-based-on-two-values/m-p/1045656#M931848</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Which of the two expression worked?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Mar 2016 11:17:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditionally-show-the-column-based-on-two-values/m-p/1045656#M931848</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-03-10T11:17:11Z</dc:date>
    </item>
    <item>
      <title>Re: Conditionally  show the column based on two values</title>
      <link>https://community.qlik.com/t5/QlikView/Conditionally-show-the-column-based-on-two-values/m-p/1045657#M931849</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f2f2f2;"&gt;if(match(Country,'India','US'),1,0)&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Mar 2016 11:17:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditionally-show-the-column-based-on-two-values/m-p/1045657#M931849</guid>
      <dc:creator />
      <dc:date>2016-03-10T11:17:59Z</dc:date>
    </item>
    <item>
      <title>Re: Conditionally  show the column based on two values</title>
      <link>https://community.qlik.com/t5/QlikView/Conditionally-show-the-column-based-on-two-values/m-p/1045658#M931850</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;Its working for India or US&amp;nbsp; and&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;i need third scenario like INDIA and US.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;Means 1.India&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2.US&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3.INDIA and US&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;for third scenario waht i need to do?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;Please do the needful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Mar 2016 12:53:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditionally-show-the-column-based-on-two-values/m-p/1045658#M931850</guid>
      <dc:creator />
      <dc:date>2016-03-10T12:53:29Z</dc:date>
    </item>
    <item>
      <title>Re: Conditionally  show the column based on two values</title>
      <link>https://community.qlik.com/t5/QlikView/Conditionally-show-the-column-based-on-two-values/m-p/1045659#M931851</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you using this in the script?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Mar 2016 13:23:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditionally-show-the-column-based-on-two-values/m-p/1045659#M931851</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-03-10T13:23:11Z</dc:date>
    </item>
    <item>
      <title>Re: Conditionally  show the column based on two values</title>
      <link>https://community.qlik.com/t5/QlikView/Conditionally-show-the-column-based-on-two-values/m-p/1045660#M931852</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Thiru,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try &lt;SPAN style="font-size: 13.3333px;"&gt;the below code n c if its working...&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;In the below example put your column name and modify as per your requirement&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;=if(SubField(GetFieldSelections(month_name),',',1)='Feb 2012' and&amp;nbsp; right(GetFieldSelections(month_name),8)='Mar 2012' ,1,0)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First select two values from a &lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Country &lt;/STRONG&gt;column and then take a text box and type&lt;/P&gt;&lt;P&gt;=GetFieldSelections(&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Country&lt;/STRONG&gt;)..then you can c how your value is coming like in case of below example its coming like&lt;/P&gt;&lt;P&gt;&lt;STRONG style="text-decoration: underline;"&gt;Feb 2012, Mar 2012&lt;/STRONG&gt;&amp;nbsp; for &lt;SPAN style="font-size: 13.3333px;"&gt;GetFieldSelections(month_name)...&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;So in your case if value is coming as : &lt;SPAN style="font-size: 13.3333px;"&gt;&lt;STRONG style="text-decoration: underline;"&gt;INDIA, US&lt;/STRONG&gt; for &lt;SPAN style="font-size: 13.3333px;"&gt;GetFieldSelections(&lt;/SPAN&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Country&lt;/STRONG&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;) then try below in your conditional box of expression:&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;=if(SubField(GetFieldSelections(&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Country&lt;/STRONG&gt;),',',1)='&lt;STRONG style="font-size: 13.3333px;"&gt;INDIA&lt;/STRONG&gt;' and&amp;nbsp; right(GetFieldSelections(&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Country&lt;/STRONG&gt;),2)='&lt;STRONG&gt;US&lt;/STRONG&gt;' ,1,0)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Itishree&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Mar 2016 15:02:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditionally-show-the-column-based-on-two-values/m-p/1045660#M931852</guid>
      <dc:creator />
      <dc:date>2016-03-10T15:02:07Z</dc:date>
    </item>
    <item>
      <title>Re: Conditionally  show the column based on two values</title>
      <link>https://community.qlik.com/t5/QlikView/Conditionally-show-the-column-based-on-two-values/m-p/1045661#M931854</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;please give the solution for this scenario&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want to show conditional visibility in state column based on year column values&lt;/P&gt;&lt;P&gt;1.1999&lt;/P&gt;&lt;P&gt;2.2000&lt;/P&gt;&lt;P&gt;3.1999 and 2000&lt;/P&gt;&lt;P&gt;it is working for 1999 or 2000 not for both&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;year=1999 or year=2000 or(year=1999 and year =2000),but it is not working''&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cab you please do the needful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thiru&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 May 2016 12:51:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditionally-show-the-column-based-on-two-values/m-p/1045661#M931854</guid>
      <dc:creator />
      <dc:date>2016-05-04T12:51:43Z</dc:date>
    </item>
    <item>
      <title>Re: Conditionally  show the column based on two values</title>
      <link>https://community.qlik.com/t5/QlikView/Conditionally-show-the-column-based-on-two-values/m-p/1045662#M931858</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;please give the solution for this scenario&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;i want to show conditional visibility in state column based on year column values&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;1.1999&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;2.2000&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;3.1999 and 2000&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;it is working for 1999 or 2000 not for both&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;year=1999 or year=2000 or(year=1999 and year =2000),but it is not working''&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;cab you please do the needful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 May 2016 12:51:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditionally-show-the-column-based-on-two-values/m-p/1045662#M931858</guid>
      <dc:creator />
      <dc:date>2016-05-04T12:51:53Z</dc:date>
    </item>
    <item>
      <title>Re: Conditionally  show the column based on two values</title>
      <link>https://community.qlik.com/t5/QlikView/Conditionally-show-the-column-based-on-two-values/m-p/1045663#M931861</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Thiru,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried with a simple example like below and it is working fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load * Inline &lt;/P&gt;&lt;P&gt;[CatID, Category ,state,year,value&lt;/P&gt;&lt;P&gt;0,Regular ,A,1999,20&lt;/P&gt;&lt;P&gt;1,Occasional ,B,2000,30&lt;/P&gt;&lt;P&gt;2,Permanent,C,2016,40]; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Front end:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Took a straight table with &lt;SPAN style="font-size: 13.3333px;"&gt;CatID, Category ,state,year as dim and Value as expression.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Then wrote the below expression in the conditional box of state dim.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;if(SubField(GetFieldSelections(year),',',1)='1999' or right(GetFieldSelections(year),4)='2000' or (SubField(GetFieldSelections(year),',',1)='1999' and&amp;nbsp; right(GetFieldSelections(year),4)='2000') ,1,0)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="example.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/123667_example.PNG" style="height: 171px; width: 620px;" /&gt;&lt;IMG alt="example1.PNG" class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/123683_example1.PNG" style="height: 94px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="example2.PNG" class="jive-image image-3" src="https://community.qlik.com/legacyfs/online/123684_example2.PNG" style="height: 81px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="example3.PNG" class="image-4 jive-image" height="322" src="https://community.qlik.com/legacyfs/online/123685_example3.PNG" style="height: 322px; width: 686px;" width="686" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Itishree&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 May 2016 14:26:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditionally-show-the-column-based-on-two-values/m-p/1045663#M931861</guid>
      <dc:creator />
      <dc:date>2016-05-05T14:26:04Z</dc:date>
    </item>
    <item>
      <title>Re: Conditionally  show the column based on two values</title>
      <link>https://community.qlik.com/t5/QlikView/Conditionally-show-the-column-based-on-two-values/m-p/1045664#M931864</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Priyadharsini,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes true.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its working fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thnak you&amp;nbsp; so much.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;Thiru&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 May 2016 06:53:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditionally-show-the-column-based-on-two-values/m-p/1045664#M931864</guid>
      <dc:creator />
      <dc:date>2016-05-06T06:53:06Z</dc:date>
    </item>
    <item>
      <title>Re: Conditionally  show the column based on two values</title>
      <link>https://community.qlik.com/t5/QlikView/Conditionally-show-the-column-based-on-two-values/m-p/1045665#M931866</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Priya dharsini,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry to say again it's not working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want show the column hide and visible based on the selection of year and associative values of year.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You are hiding the rows not complete column&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please do the needful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Thiru&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 May 2016 12:17:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Conditionally-show-the-column-based-on-two-values/m-p/1045665#M931866</guid>
      <dc:creator />
      <dc:date>2016-05-10T12:17:57Z</dc:date>
    </item>
  </channel>
</rss>

