<?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: Subsetting in a table in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Subsetting-in-a-table/m-p/908278#M315441</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much for your help with this. I have now managed to do this. Greatly appreciate all of your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks&lt;/P&gt;&lt;P&gt;Stephen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 22 Jul 2015 07:05:33 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-07-22T07:05:33Z</dc:date>
    <item>
      <title>Subsetting in a table</title>
      <link>https://community.qlik.com/t5/QlikView/Subsetting-in-a-table/m-p/908274#M315437</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;BR /&gt;I'm new to Qlikview and am in the process of building my first application.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So far, I have loaded in data from 3 sources from excel, and concatenated them together using the script editor as they have consistent field names and formats, which enables concatenation. I have a field in that dataset called 'source', with values equal to 'A','B' or 'C', which enables me to identify which source particular rows in the data originate from.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the sake of this example, I would like to build a straight table which users can use listboxes to drill down to. I would only like data to be displayed in this table where, in the input dataset, source = 'A'. I was wondering if anyone could shed light on how or where I would do this - I presume a conditional expression is required somewhere in the 'Chart Properties' window but I am not sure what that should be or where.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this makes sense, and any advice would be greatly appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Stephen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jul 2015 12:27:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Subsetting-in-a-table/m-p/908274#M315437</guid>
      <dc:creator />
      <dc:date>2015-07-21T12:27:35Z</dc:date>
    </item>
    <item>
      <title>Re: Subsetting in a table</title>
      <link>https://community.qlik.com/t5/QlikView/Subsetting-in-a-table/m-p/908275#M315438</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Stephen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this sounds like a job for Set Analysis.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An example, if you are wanting to show a Sum of your field InvoiceValue, use this expression&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sum({$&amp;lt;Source={'A'}&amp;gt;} InvoiceValue)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Set in here (Source={'A'}) will limit the values in the expression to only those with a Source Of A&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jul 2015 15:24:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Subsetting-in-a-table/m-p/908275#M315438</guid>
      <dc:creator>marcus_malinow</dc:creator>
      <dc:date>2015-07-21T15:24:34Z</dc:date>
    </item>
    <item>
      <title>Re: Subsetting in a table</title>
      <link>https://community.qlik.com/t5/QlikView/Subsetting-in-a-table/m-p/908276#M315439</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Stephen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can 'filter' the data to be shown in your Chart in the Dimension tab of Chart Properties.&lt;/P&gt;&lt;P&gt;Something like IF(source='A', &amp;lt;dimension field&amp;gt;).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Of course, if you want the user to select the source code they wish displayed, you don't need to do this because the selection does it for you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Be sure to check the box to suppress null values in this dimension.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jul 2015 15:26:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Subsetting-in-a-table/m-p/908276#M315439</guid>
      <dc:creator>richard_chilvers</dc:creator>
      <dc:date>2015-07-21T15:26:59Z</dc:date>
    </item>
    <item>
      <title>Re: Subsetting in a table</title>
      <link>https://community.qlik.com/t5/QlikView/Subsetting-in-a-table/m-p/908277#M315440</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hope this helps you. See attached app and excel sheet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jul 2015 15:36:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Subsetting-in-a-table/m-p/908277#M315440</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-07-21T15:36:17Z</dc:date>
    </item>
    <item>
      <title>Re: Subsetting in a table</title>
      <link>https://community.qlik.com/t5/QlikView/Subsetting-in-a-table/m-p/908278#M315441</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much for your help with this. I have now managed to do this. Greatly appreciate all of your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks&lt;/P&gt;&lt;P&gt;Stephen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jul 2015 07:05:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Subsetting-in-a-table/m-p/908278#M315441</guid>
      <dc:creator />
      <dc:date>2015-07-22T07:05:33Z</dc:date>
    </item>
  </channel>
</rss>

