<?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: Show/Hide Column Fields based on Selection in List Box - Straight Table in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Show-Hide-Column-Fields-based-on-Selection-in-List-Box-Straight/m-p/1728907#M452194</link>
    <description>&lt;P&gt;This is excellent!&lt;/P&gt;&lt;P&gt;So let me throw you in a loop here for a second. Say we had two states that are very similar?&lt;/P&gt;&lt;P&gt;Say I have Washington(the State) and then there is Washington D.C?&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I plugged in your expression (which works wonderfully by the way), I am running into the issue of where my similar fields are being shown simultaneously and only want the unique one.&lt;/P&gt;</description>
    <pubDate>Fri, 17 Jul 2020 18:37:14 GMT</pubDate>
    <dc:creator>ZoeM</dc:creator>
    <dc:date>2020-07-17T18:37:14Z</dc:date>
    <item>
      <title>Show/Hide Column Fields based on Selection in List Box - Straight Table</title>
      <link>https://community.qlik.com/t5/QlikView/Show-Hide-Column-Fields-based-on-Selection-in-List-Box-Straight/m-p/1728905#M452192</link>
      <description>&lt;P&gt;Hello Community.&lt;/P&gt;&lt;P&gt;I would like to enable a condition in the expression tab for a few columns to only show when they are selected from the list box.&lt;/P&gt;&lt;P&gt;So in the example attached, I have a total column which will show all the time. But I would like for Washington, Alabama, and Arizona to show only if they are selected by the user from the available list box. and the user can choose to select a variety of&amp;nbsp; of states accordingly i.e. can choose to see only Washington and Arizona or Alabama and Arizona etc.&amp;nbsp;&lt;/P&gt;&lt;P&gt;How would I write that conditional expression?&lt;/P&gt;&lt;P&gt;Thanks in advance.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 00:18:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-Hide-Column-Fields-based-on-Selection-in-List-Box-Straight/m-p/1728905#M452192</guid>
      <dc:creator>ZoeM</dc:creator>
      <dc:date>2024-11-16T00:18:05Z</dc:date>
    </item>
    <item>
      <title>Re: Show/Hide Column Fields based on Selection in List Box - Straight Table</title>
      <link>https://community.qlik.com/t5/QlikView/Show-Hide-Column-Fields-based-on-Selection-in-List-Box-Straight/m-p/1728906#M452193</link>
      <description>&lt;P&gt;I do something similar so that the users can create a custom table to export.&amp;nbsp; I put this in the expression's conditional test.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If(SubstringCount(Concat(distinct state_name,'|'),'|') &amp;gt;= 0 and SubstringCount(Concat(distinct state_name,'|'),'|') &amp;lt;= 51 and GetSelectedCount(state_name) &amp;gt; 0,&lt;BR /&gt;If(SubStringCount(Concat(distinct state_name,'|'),'Washington') = 1,1,0),&lt;BR /&gt;0)&lt;/P&gt;</description>
      <pubDate>Fri, 17 Jul 2020 18:22:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-Hide-Column-Fields-based-on-Selection-in-List-Box-Straight/m-p/1728906#M452193</guid>
      <dc:creator>jwjackso</dc:creator>
      <dc:date>2020-07-17T18:22:10Z</dc:date>
    </item>
    <item>
      <title>Re: Show/Hide Column Fields based on Selection in List Box - Straight Table</title>
      <link>https://community.qlik.com/t5/QlikView/Show-Hide-Column-Fields-based-on-Selection-in-List-Box-Straight/m-p/1728907#M452194</link>
      <description>&lt;P&gt;This is excellent!&lt;/P&gt;&lt;P&gt;So let me throw you in a loop here for a second. Say we had two states that are very similar?&lt;/P&gt;&lt;P&gt;Say I have Washington(the State) and then there is Washington D.C?&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I plugged in your expression (which works wonderfully by the way), I am running into the issue of where my similar fields are being shown simultaneously and only want the unique one.&lt;/P&gt;</description>
      <pubDate>Fri, 17 Jul 2020 18:37:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-Hide-Column-Fields-based-on-Selection-in-List-Box-Straight/m-p/1728907#M452194</guid>
      <dc:creator>ZoeM</dc:creator>
      <dc:date>2020-07-17T18:37:14Z</dc:date>
    </item>
    <item>
      <title>Re: Show/Hide Column Fields based on Selection in List Box - Straight Table</title>
      <link>https://community.qlik.com/t5/QlikView/Show-Hide-Column-Fields-based-on-Selection-in-List-Box-Straight/m-p/1728909#M452195</link>
      <description>&lt;P&gt;In my application, I created an inline table like below.&amp;nbsp; I dsiplay the Rfield in the filter and the conditional statement is matching on the RFieldID.&amp;nbsp; Washington would match on A49 and Washington D.C. would match on A53.&lt;/P&gt;&lt;P&gt;ReportField:&lt;BR /&gt;load * inline [&lt;BR /&gt;Rfield,RFieldID&lt;BR /&gt;Alabama,A01&lt;BR /&gt;Alaska,A02&lt;BR /&gt;Arizona,A03&lt;BR /&gt;Arkansas,A04&lt;BR /&gt;California,A05&lt;BR /&gt;Colorado,A06&lt;BR /&gt;Connecticut,A07&lt;BR /&gt;Delaware,A08&lt;BR /&gt;District of Columbia,A09&lt;BR /&gt;Florida,A10&lt;BR /&gt;Georgia,A11&lt;BR /&gt;Hawaii,A12&lt;BR /&gt;Idaho,A13&lt;BR /&gt;Illinois,A14&lt;BR /&gt;Indiana,A15&lt;BR /&gt;Iowa,A16&lt;BR /&gt;Kansas,A17&lt;BR /&gt;Kentucky,A18&lt;BR /&gt;Louisiana,A19&lt;BR /&gt;Maine,A20&lt;BR /&gt;Maryland,A21&lt;BR /&gt;Massachusetts,A22&lt;BR /&gt;Michigan,A23&lt;BR /&gt;Minnesota,A24&lt;BR /&gt;Mississippi,A25&lt;BR /&gt;Missouri,A26&lt;BR /&gt;Montana,A27&lt;BR /&gt;Nebraska,A28&lt;BR /&gt;Nevada,A29&lt;BR /&gt;New Hampshire,A30&lt;BR /&gt;New Jersey,A31&lt;BR /&gt;New Mexico,A32&lt;BR /&gt;New York,A33&lt;BR /&gt;North Carolina,A34&lt;BR /&gt;North Dakota,A35&lt;BR /&gt;Ohio,A36&lt;BR /&gt;Oklahoma,A37&lt;BR /&gt;Oregon,A38&lt;BR /&gt;Pennsylvania,A39&lt;BR /&gt;Puerto Rico,A40&lt;BR /&gt;Rhode Island,A41&lt;BR /&gt;South Carolina,A42&lt;BR /&gt;South Dakota,A43&lt;BR /&gt;Tennessee,A44&lt;BR /&gt;Texas,A45&lt;BR /&gt;Utah,A46&lt;BR /&gt;Vermont,A47&lt;BR /&gt;Virginia,A48&lt;BR /&gt;Washington,A49&lt;BR /&gt;West Virginia,A50&lt;BR /&gt;Wisconsin,A51&lt;BR /&gt;Wyoming,A52&lt;BR /&gt;Washington D.C.,A53&lt;BR /&gt;];&lt;/P&gt;</description>
      <pubDate>Fri, 17 Jul 2020 18:47:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-Hide-Column-Fields-based-on-Selection-in-List-Box-Straight/m-p/1728909#M452195</guid>
      <dc:creator>jwjackso</dc:creator>
      <dc:date>2020-07-17T18:47:34Z</dc:date>
    </item>
    <item>
      <title>Re: Show/Hide Column Fields based on Selection in List Box - Straight Table</title>
      <link>https://community.qlik.com/t5/QlikView/Show-Hide-Column-Fields-based-on-Selection-in-List-Box-Straight/m-p/1728910#M452196</link>
      <description>&lt;P&gt;Yea unfortunately I cant make edits in the script.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks though for your help. Let me work off of what you have provided and see if I can figure out how to separate the identical.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Jul 2020 18:58:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-Hide-Column-Fields-based-on-Selection-in-List-Box-Straight/m-p/1728910#M452196</guid>
      <dc:creator>ZoeM</dc:creator>
      <dc:date>2020-07-17T18:58:27Z</dc:date>
    </item>
  </channel>
</rss>

