<?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: How to get my table to show a specific field value at all times? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-get-my-table-to-show-a-specific-field-value-at-all-times/m-p/1409827#M426482</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yup&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 16 Aug 2017 13:56:36 GMT</pubDate>
    <dc:creator>sunny_talwar</dc:creator>
    <dc:date>2017-08-16T13:56:36Z</dc:date>
    <item>
      <title>How to get my table to show a specific field value at all times?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-my-table-to-show-a-specific-field-value-at-all-times/m-p/1409824#M426479</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 have a table that I want it to behave as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Table: Consists of &lt;EM&gt;Sales&lt;/EM&gt;, &lt;EM&gt;Sales Accumulated&lt;/EM&gt; and &lt;EM&gt;Sales compared to last year in %&lt;/EM&gt;. On the rows I have different retail stores.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These retail stores are divided into the following categories (called Store Type): &lt;STRONG&gt;Concept&lt;/STRONG&gt;, &lt;STRONG&gt;Estore&lt;/STRONG&gt;, &lt;STRONG&gt;Outlet&lt;/STRONG&gt;, &lt;STRONG&gt;Soft Shop&lt;/STRONG&gt;, &lt;STRONG&gt;Partner&lt;/STRONG&gt; and &lt;STRONG&gt;SiS&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want the table to always show: Concept, Estore and Outlet, regardless of what I put as a filter in the listbox.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So basically, if a user filters on Concept, I still want the table to show Estore and Outlet as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the table properties&amp;gt;General&amp;gt;Calculation Condition I used the following string:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;If&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;( {$ &amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Store Type]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; = &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;"Concept, Estore, Outlet"&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;} )&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Which obviously didn't cut it. What am I missing here?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Aug 2017 11:58:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-my-table-to-show-a-specific-field-value-at-all-times/m-p/1409824#M426479</guid>
      <dc:creator>robinwiman</dc:creator>
      <dc:date>2017-08-16T11:58:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to get my table to show a specific field value at all times?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-my-table-to-show-a-specific-field-value-at-all-times/m-p/1409825#M426480</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to use this set analysis in your expressions... assuming the expression looks like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Sum(Measure)&lt;/STRONG&gt;, change it to&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Sum(&lt;SPAN style="color: #ff0000;"&gt;{&amp;lt;[Store Type] = {'Concept', 'Estore', 'Outlet'}&amp;gt;}&lt;/SPAN&gt; Measure)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The key is to use the set analysis in red as your set analysis in all the expressions you are using&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Aug 2017 13:36:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-my-table-to-show-a-specific-field-value-at-all-times/m-p/1409825#M426480</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-08-16T13:36:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to get my table to show a specific field value at all times?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-my-table-to-show-a-specific-field-value-at-all-times/m-p/1409826#M426481</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So what do I change Measure into? Do I have to change all the expressions rather than under properties&amp;gt;general&amp;gt;calculation condition?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Aug 2017 13:50:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-my-table-to-show-a-specific-field-value-at-all-times/m-p/1409826#M426481</guid>
      <dc:creator>robinwiman</dc:creator>
      <dc:date>2017-08-16T13:50:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to get my table to show a specific field value at all times?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-my-table-to-show-a-specific-field-value-at-all-times/m-p/1409827#M426482</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yup&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Aug 2017 13:56:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-my-table-to-show-a-specific-field-value-at-all-times/m-p/1409827#M426482</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-08-16T13:56:36Z</dc:date>
    </item>
  </channel>
</rss>

