<?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: Straight Table Conditional Show Expression in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Straight-Table-Conditional-Show-Expression/m-p/1087268#M361924</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What if user selects the &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;%PickMetric 1 and 10 both at a same time?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 22 Apr 2016 14:28:36 GMT</pubDate>
    <dc:creator>Kushal_Chawda</dc:creator>
    <dc:date>2016-04-22T14:28:36Z</dc:date>
    <item>
      <title>Straight Table Conditional Show Expression</title>
      <link>https://community.qlik.com/t5/QlikView/Straight-Table-Conditional-Show-Expression/m-p/1087266#M361922</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am working with a straight tables that has a number of expressions. I want to do a conditional show on the individual expression when a user selects one or more from the %PickMetric below that are shown in a list box within the UI.&lt;/P&gt;&lt;P&gt;DateSelection:&lt;/P&gt;&lt;P&gt;Load * Inline [&lt;/P&gt;&lt;P&gt;%PickMetric, Desc.&lt;/P&gt;&lt;P&gt;1, Prev Month Sums&lt;/P&gt;&lt;P&gt;2, Prev Month GP&lt;/P&gt;&lt;P&gt;3, Prev Month GP %&lt;/P&gt;&lt;P&gt;4, Prev 3 Month Sums&lt;/P&gt;&lt;P&gt;5, Prev 3 Month GP&lt;/P&gt;&lt;P&gt;6, Prev 3 Month GP %&lt;/P&gt;&lt;P&gt;7, Prev 12 Month Sums&lt;/P&gt;&lt;P&gt;8, Prev 12 Month GP&lt;/P&gt;&lt;P&gt;9, Prev 12 Month GP %&lt;/P&gt;&lt;P&gt;10, LTD Sum&lt;/P&gt;&lt;P&gt;11, LTD GP&lt;/P&gt;&lt;P&gt;12, LTD GP %&lt;/P&gt;&lt;P&gt;13, Net Book Value&lt;/P&gt;&lt;P&gt;14, Unit Count&lt;/P&gt;&lt;P&gt;15, LTD CPM&lt;/P&gt;&lt;P&gt;16, Rated CPM&lt;/P&gt;&lt;P&gt;17, Months In Service&lt;/P&gt;&lt;P&gt;18, Remaining Term&lt;/P&gt;&lt;P&gt;19, Miles&lt;/P&gt;&lt;P&gt;20, Spec&lt;/P&gt;&lt;P&gt;21, Customer #&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The current equation I am using that is not working is;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=IF(GetSelectedCount(%PickMetric) &amp;gt; 0,WildMatch(Concat(%PickMetric),'*1*')&amp;gt;0,0)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any assistance on this would be much appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Apr 2016 13:43:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Straight-Table-Conditional-Show-Expression/m-p/1087266#M361922</guid>
      <dc:creator />
      <dc:date>2016-04-22T13:43:38Z</dc:date>
    </item>
    <item>
      <title>Re: Straight Table Conditional Show Expression</title>
      <link>https://community.qlik.com/t5/QlikView/Straight-Table-Conditional-Show-Expression/m-p/1087267#M361923</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be this for the expression for&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Prev Month Sums:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;GetSelectedCount(#PickMetric) &amp;gt; 0 and SubStringCount(Concat(DISTINCT '|'&amp;amp; %PickMetric &amp;amp;'|'), '|&lt;SPAN style="color: #ff0000;"&gt;1&lt;/SPAN&gt;|') = 1&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Prev Month GP:&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;GetSelectedCount(#PickMetric) &amp;gt; 0 and SubStringCount(Concat(DISTINCT '|'&amp;amp; %PickMetric &amp;amp;'|'), '|&lt;SPAN style="color: #ff0000;"&gt;2&lt;/SPAN&gt;|') = 1&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;and so on...&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Apr 2016 14:25:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Straight-Table-Conditional-Show-Expression/m-p/1087267#M361923</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-04-22T14:25:57Z</dc:date>
    </item>
    <item>
      <title>Re: Straight Table Conditional Show Expression</title>
      <link>https://community.qlik.com/t5/QlikView/Straight-Table-Conditional-Show-Expression/m-p/1087268#M361924</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What if user selects the &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;%PickMetric 1 and 10 both at a same time?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Apr 2016 14:28:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Straight-Table-Conditional-Show-Expression/m-p/1087268#M361924</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2016-04-22T14:28:36Z</dc:date>
    </item>
    <item>
      <title>Re: Straight Table Conditional Show Expression</title>
      <link>https://community.qlik.com/t5/QlikView/Straight-Table-Conditional-Show-Expression/m-p/1087269#M361925</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't see the problem if they pick 1 and 10. Expression 1 and 10 will be active.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Apr 2016 14:30:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Straight-Table-Conditional-Show-Expression/m-p/1087269#M361925</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-04-22T14:30:51Z</dc:date>
    </item>
    <item>
      <title>Re: Straight Table Conditional Show Expression</title>
      <link>https://community.qlik.com/t5/QlikView/Straight-Table-Conditional-Show-Expression/m-p/1087270#M361926</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Works great! No problems when 1 and 10 are selected. Thank you for your help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Apr 2016 15:04:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Straight-Table-Conditional-Show-Expression/m-p/1087270#M361926</guid>
      <dc:creator />
      <dc:date>2016-04-22T15:04:31Z</dc:date>
    </item>
  </channel>
</rss>

