<?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 Display only some information in a Line Chart but add information with filters when I want in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Display-only-some-information-in-a-Line-Chart-but-add/m-p/1966554#M79665</link>
    <description>&lt;P&gt;Hello everyone&lt;/P&gt;
&lt;P&gt;So I have a line chart which is displaying information of 7 categories.&lt;/P&gt;
&lt;P&gt;I only want to display at all times the information of two of them, but I want to be able to add the other categories when I want, through a filter. How could I do that?&lt;/P&gt;
&lt;P&gt;The field name is Order Type, and the categories I want to show are Service and Delivery.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thanks&lt;/P&gt;</description>
    <pubDate>Tue, 09 Aug 2022 13:03:54 GMT</pubDate>
    <dc:creator>Manuel174102</dc:creator>
    <dc:date>2022-08-09T13:03:54Z</dc:date>
    <item>
      <title>Display only some information in a Line Chart but add information with filters when I want</title>
      <link>https://community.qlik.com/t5/App-Development/Display-only-some-information-in-a-Line-Chart-but-add/m-p/1966554#M79665</link>
      <description>&lt;P&gt;Hello everyone&lt;/P&gt;
&lt;P&gt;So I have a line chart which is displaying information of 7 categories.&lt;/P&gt;
&lt;P&gt;I only want to display at all times the information of two of them, but I want to be able to add the other categories when I want, through a filter. How could I do that?&lt;/P&gt;
&lt;P&gt;The field name is Order Type, and the categories I want to show are Service and Delivery.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thanks&lt;/P&gt;</description>
      <pubDate>Tue, 09 Aug 2022 13:03:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Display-only-some-information-in-a-Line-Chart-but-add/m-p/1966554#M79665</guid>
      <dc:creator>Manuel174102</dc:creator>
      <dc:date>2022-08-09T13:03:54Z</dc:date>
    </item>
    <item>
      <title>Re: Display only some information in a Line Chart but add information with filters when I want</title>
      <link>https://community.qlik.com/t5/App-Development/Display-only-some-information-in-a-Line-Chart-but-add/m-p/1966588#M79668</link>
      <description>&lt;P&gt;Hi Manuel,&lt;/P&gt;
&lt;P&gt;One way of accomplishing that is using the expression below. I personally don't like IF statements, as they can affect performance, however, I couldn't find another yet. Let me know if that works for you.&lt;/P&gt;
&lt;P&gt;If(GetSelectedCount([Order Type])&amp;gt;0,&lt;BR /&gt;Count(distinct {$&amp;lt;[Order Type]+={'Service','Delivery'}&amp;gt;} [Measure]),&lt;BR /&gt;Count(distinct {$&amp;lt;[Order Type]={'Service','Delivery'}&amp;gt;} [Measure]))&lt;/P&gt;
&lt;P&gt;The solution I found was adding the modifier '+' to add the the 2 values as the default selected values.&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;Luiz&lt;/P&gt;</description>
      <pubDate>Tue, 09 Aug 2022 14:09:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Display-only-some-information-in-a-Line-Chart-but-add/m-p/1966588#M79668</guid>
      <dc:creator>luizcdepaula</dc:creator>
      <dc:date>2022-08-09T14:09:11Z</dc:date>
    </item>
    <item>
      <title>Re: Display only some information in a Line Chart but add information with filters when I want</title>
      <link>https://community.qlik.com/t5/App-Development/Display-only-some-information-in-a-Line-Chart-but-add/m-p/1966913#M79686</link>
      <description>&lt;P&gt;Hello Luiz,&lt;/P&gt;
&lt;P&gt;Thanks for answering.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It is not working out.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I get the following message : Error in expression: Nested aggregation not allowed.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Greetings,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Manuel&lt;/P&gt;</description>
      <pubDate>Wed, 10 Aug 2022 07:32:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Display-only-some-information-in-a-Line-Chart-but-add/m-p/1966913#M79686</guid>
      <dc:creator>Manuel174102</dc:creator>
      <dc:date>2022-08-10T07:32:46Z</dc:date>
    </item>
    <item>
      <title>Re: Display only some information in a Line Chart but add information with filters when I want</title>
      <link>https://community.qlik.com/t5/App-Development/Display-only-some-information-in-a-Line-Chart-but-add/m-p/1967142#M79713</link>
      <description>&lt;P&gt;Hi Manuel,&lt;/P&gt;
&lt;P&gt;That is very strange, as I tested on my side and I don't get the error, and it worked for me.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Are you applying the logic in the visualization? If so, are you using QlikView or Qlik Sense? Not sure if that really matters as I believe QlikView would still work.&lt;/P&gt;
&lt;P&gt;Luiz&lt;/P&gt;</description>
      <pubDate>Wed, 10 Aug 2022 13:40:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Display-only-some-information-in-a-Line-Chart-but-add/m-p/1967142#M79713</guid>
      <dc:creator>luizcdepaula</dc:creator>
      <dc:date>2022-08-10T13:40:45Z</dc:date>
    </item>
    <item>
      <title>Re: Display only some information in a Line Chart but add information with filters when I want</title>
      <link>https://community.qlik.com/t5/App-Development/Display-only-some-information-in-a-Line-Chart-but-add/m-p/1967147#M79714</link>
      <description>&lt;P&gt;I finally just set a default bookmark.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I thank you for helpimg me out. Prob it is not working cuz I am new and still learning!&lt;/P&gt;</description>
      <pubDate>Wed, 10 Aug 2022 13:43:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Display-only-some-information-in-a-Line-Chart-but-add/m-p/1967147#M79714</guid>
      <dc:creator>Manuel174102</dc:creator>
      <dc:date>2022-08-10T13:43:37Z</dc:date>
    </item>
    <item>
      <title>Re: Display only some information in a Line Chart but add information with filters when I want</title>
      <link>https://community.qlik.com/t5/App-Development/Display-only-some-information-in-a-Line-Chart-but-add/m-p/1967153#M79715</link>
      <description>&lt;P&gt;I am glad you found a solution.&lt;/P&gt;
&lt;P&gt;Keep in mind that as a bookmark, people can still deselect the default 2 values. With that logic, anytime you make a selection, the default values will always be selected.&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;Luiz&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Aug 2022 13:47:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Display-only-some-information-in-a-Line-Chart-but-add/m-p/1967153#M79715</guid>
      <dc:creator>luizcdepaula</dc:creator>
      <dc:date>2022-08-10T13:47:13Z</dc:date>
    </item>
  </channel>
</rss>

