<?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 add an specific filter on a line chart? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-add-an-specific-filter-on-a-line-chart/m-p/1180546#M884123</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Roberto,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not sure how you are loading data, here is an example of resolution:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First data load (I am making sure that field is laoded as date)&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14746493457269186 jive_text_macro" jivemacro_uid="_14746493457269186"&gt;
&lt;P&gt;LOAD&lt;/P&gt;
&lt;P&gt;Date#(Date,'YYYY-MM') as Date,&lt;/P&gt;
&lt;P&gt;Value&lt;/P&gt;
&lt;P&gt;;&lt;/P&gt;
&lt;P&gt;LOAD * INLINE [&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date, Value&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2016-10, 1&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2016-09, 1&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2016-08, 2&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2016-07, 3&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2016-06, 1&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2016-05, 6&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2016-04, 7&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2016-03, 9&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2016-02, 3&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2016-01, 4&lt;/P&gt;
&lt;P&gt;];&lt;/P&gt;

&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then I am adding calculated expression in chart:&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14746494149177348 jive_text_macro" jivemacro_uid="_14746494149177348"&gt;
&lt;P&gt;=IF(Date&amp;gt;=AddMonths(MonthStart(Today(1)),-6), Date)&lt;/P&gt;

&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also marking "suppress when value is null"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also play around with "Dimensions Limits" tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Adding sample file for you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Kuba&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 23 Sep 2016 16:51:54 GMT</pubDate>
    <dc:creator />
    <dc:date>2016-09-23T16:51:54Z</dc:date>
    <item>
      <title>How to add an specific filter on a line chart?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-an-specific-filter-on-a-line-chart/m-p/1180545#M884122</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 am creating a Line Chart on QlikView, I am using a field that will have the date as the following: 2016-09, 2016-08, ..., 2014-01&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem is that I will like to display on the chart only the last 6 months, for this I am trying to add a calculated dimension for this field, but it's not working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I used just the field, all months are being displayed from the last 2 years, I tried to add an additional filter as =YearMonth &amp;gt;'2016-02', but is not working, if I removed the field and leave only this calculated dimension the line chart only displays one value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What can I do to fix this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-an-specific-filter-on-a-line-chart/m-p/1180545#M884122</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to add an specific filter on a line chart?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-an-specific-filter-on-a-line-chart/m-p/1180546#M884123</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Roberto,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not sure how you are loading data, here is an example of resolution:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First data load (I am making sure that field is laoded as date)&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14746493457269186 jive_text_macro" jivemacro_uid="_14746493457269186"&gt;
&lt;P&gt;LOAD&lt;/P&gt;
&lt;P&gt;Date#(Date,'YYYY-MM') as Date,&lt;/P&gt;
&lt;P&gt;Value&lt;/P&gt;
&lt;P&gt;;&lt;/P&gt;
&lt;P&gt;LOAD * INLINE [&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date, Value&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2016-10, 1&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2016-09, 1&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2016-08, 2&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2016-07, 3&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2016-06, 1&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2016-05, 6&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2016-04, 7&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2016-03, 9&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2016-02, 3&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2016-01, 4&lt;/P&gt;
&lt;P&gt;];&lt;/P&gt;

&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then I am adding calculated expression in chart:&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14746494149177348 jive_text_macro" jivemacro_uid="_14746494149177348"&gt;
&lt;P&gt;=IF(Date&amp;gt;=AddMonths(MonthStart(Today(1)),-6), Date)&lt;/P&gt;

&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also marking "suppress when value is null"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also play around with "Dimensions Limits" tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Adding sample file for you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Kuba&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Sep 2016 16:51:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-an-specific-filter-on-a-line-chart/m-p/1180546#M884123</guid>
      <dc:creator />
      <dc:date>2016-09-23T16:51:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to add an specific filter on a line chart?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-an-specific-filter-on-a-line-chart/m-p/1180547#M884125</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;First convert your month field to a valid date format in script like below&lt;/P&gt;&lt;P&gt;DAta:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;*,&lt;/P&gt;&lt;P&gt;MonthName(DateFieldName) AS Month;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;Date(Date#(&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;DateFieldName, 'YYYY-MM')) AS &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;DateFieldName&lt;/SPAN&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Value&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;FROM DataSource;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Now in set analysis try like below&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Last 6 Months Sales&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Sum({&amp;lt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;DateFieldName&lt;/SPAN&gt;={‘&amp;gt;=$(=MonthStart(&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;Max(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;DateFieldName&lt;/SPAN&gt;)&lt;/SPAN&gt;, -5))&amp;lt;=$(=Date(&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;Max(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;DateFieldName&lt;/SPAN&gt;)&lt;/SPAN&gt;))’}&amp;gt;} Sales )&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Check below link for similar kind of expressions for various scenarios.&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;A href="https://community.qlik.com/docs/DOC-9144"&gt;Set Analysis for Rolling Periods&lt;/A&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Regards,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Jagan.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Sep 2016 17:32:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-an-specific-filter-on-a-line-chart/m-p/1180547#M884125</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2016-09-23T17:32:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to add an specific filter on a line chart?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-an-specific-filter-on-a-line-chart/m-p/1180548#M884130</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 don't have problems with the field, as it's already with values as 'yyyy-mm' what I need is to create a line chart for last 6 months, and here is where I have problems. As I will like to have this filter only for one dashboard I am not being able to create it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way to create a filter for this specific request. I tried in the a calculated dimensions, or with the limits, but still not able.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'll appreciated your help &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Sep 2016 17:57:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-an-specific-filter-on-a-line-chart/m-p/1180548#M884130</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-09-23T17:57:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to add an specific filter on a line chart?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-an-specific-filter-on-a-line-chart/m-p/1180549#M884133</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I think the Month is in the string format, so you have to convert to date to apply filters in set analysis.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 Sep 2016 16:38:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-an-specific-filter-on-a-line-chart/m-p/1180549#M884133</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2016-09-24T16:38:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to add an specific filter on a line chart?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-an-specific-filter-on-a-line-chart/m-p/1180550#M884135</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then, how can I convert that, when the data is already imported and used in another sections?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Sep 2016 12:59:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-an-specific-filter-on-a-line-chart/m-p/1180550#M884135</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-09-26T12:59:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to add an specific filter on a line chart?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-an-specific-filter-on-a-line-chart/m-p/1180551#M884136</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;Convert the field in script and derive a new column, and use this new column in ur set analysis.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Sep 2016 02:40:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-an-specific-filter-on-a-line-chart/m-p/1180551#M884136</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2016-09-27T02:40:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to add an specific filter on a line chart?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-an-specific-filter-on-a-line-chart/m-p/1180552#M884137</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sure, I will do that, can you please help me with the steps to convert the field?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Sep 2016 13:10:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-an-specific-filter-on-a-line-chart/m-p/1180552#M884137</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-09-27T13:10:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to add an specific filter on a line chart?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-an-specific-filter-on-a-line-chart/m-p/1180553#M884138</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;DAta:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;*,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;MonthName(DateFieldName) AS Month;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Date(Date#(&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;DateFieldName, 'YYYY-MM')) AS &lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;DateFieldName&lt;/SPAN&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;Value&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;FROM DataSource;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;Now in set analysis try like below&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Last 6 Months Sales&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Sum({&amp;lt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;DateFieldName&lt;/SPAN&gt;={‘&amp;gt;=$(=MonthStart(&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;Max(&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;DateFieldName&lt;/SPAN&gt;)&lt;/SPAN&gt;, -5))&amp;lt;=$(=Date(&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;Max(&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;DateFieldName&lt;/SPAN&gt;)&lt;/SPAN&gt;))’}&amp;gt;} Sales )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Check below link for similar kind of expressions for various scenarios.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;A _jive_internal="true" data-containerid="2049" data-containertype="14" data-objectid="9144" data-objecttype="102" href="https://community.qlik.com/docs/DOC-9144" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #3778c7;"&gt;Set Analysis for Rolling Periods&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Regards,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Sep 2016 02:53:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-an-specific-filter-on-a-line-chart/m-p/1180553#M884138</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2016-09-28T02:53:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to add an specific filter on a line chart?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-an-specific-filter-on-a-line-chart/m-p/1180554#M884139</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have tried the load in the script section but it failed. I have tried the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sum({&amp;lt;&lt;SPAN style="font-style: inherit; font-weight: inherit;"&gt;DateFieldName&lt;/SPAN&gt;={‘&amp;gt;=$(=MonthStart(&lt;SPAN style="font-family: inherit; font-style: inherit; font-weight: inherit;"&gt;Max(&lt;SPAN style="font-style: inherit; font-weight: inherit;"&gt;DateFieldName&lt;/SPAN&gt;)&lt;/SPAN&gt;, -5))&amp;lt;=$(=Date(&lt;SPAN style="font-family: inherit; font-style: inherit; font-weight: inherit;"&gt;Max(&lt;SPAN style="font-style: inherit; font-weight: inherit;"&gt;DateFieldName&lt;/SPAN&gt;)&lt;/SPAN&gt;))’}&amp;gt;} Sales )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the DateFieldName I used the YRMON field that already has the 'YYYY-MM' data, but don't know what "Sales" means or where comes from, so I was not able to use it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have create filters that are being set automatically when I hit on a text box, something like this:&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/139172_pastedImage_0.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The dashboards are being filtered by this, when I hit on the text box. This is how the properties of the dimensions look like:&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/139174_pastedImage_0.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, I have try the same dimension on the specific dashboard, but it's not doing anything. Is there any way to create a filter in each dashboard that won't affect other ones? that is what I am looking for. Something similar to the second picture but that works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you in advanced for your help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Sep 2016 15:06:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-an-specific-filter-on-a-line-chart/m-p/1180554#M884139</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-09-29T15:06:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to add an specific filter on a line chart?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-an-specific-filter-on-a-line-chart/m-p/1180555#M884140</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have also tried something like this &lt;SPAN style="font-size: 8pt;"&gt;= &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;count&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;({&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[YRMON]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;lt;{'2016-03'}&amp;gt;} &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[AutoID]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) &lt;/SPAN&gt; in the expressions, but the dashboard got a big X it's not showing the data that I need.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Oct 2016 13:13:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-an-specific-filter-on-a-line-chart/m-p/1180555#M884140</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-10-03T13:13:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to add an specific filter on a line chart?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-an-specific-filter-on-a-line-chart/m-p/1180556#M884141</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;If you can attach some sample file then it would be easier to understand and give the solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Oct 2016 02:41:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-an-specific-filter-on-a-line-chart/m-p/1180556#M884141</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2016-10-04T02:41:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to add an specific filter on a line chart?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-an-specific-filter-on-a-line-chart/m-p/1180557#M884142</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I cannot attached an example, but I will try to be clear on my explanation. I have 3 fields ID, YRMON and Region, ID is the unique identification number, YRMON is the year and month when the ID was open and the region will be ASIA, AMERICA or EUROPE. Then I added a line chart&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/139557_pastedImage_0.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;P&gt;This char will display all the YRMON, the 3 regions and the quantity of records per month. Using as dimensions YRMON and Region, and as expression the count of IDs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I would like to have is that the chart only displays the last 6 YRMON. I have tried adding the above conditions as dimensions or&amp;nbsp; &lt;SPAN style="font-size: 8pt;"&gt;= &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;count&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;({&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[YRMON]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;lt;{'2016-03'}&amp;gt;} &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[AutoID]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) &lt;/SPAN&gt;as expression. But didn't work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea on how to do this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Oct 2016 12:18:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-an-specific-filter-on-a-line-chart/m-p/1180557#M884142</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-10-04T12:18:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to add an specific filter on a line chart?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-an-specific-filter-on-a-line-chart/m-p/1180558#M884143</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;From this graph what area you expecting&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #0000ff;"&gt;count&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;({&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #800000;"&gt;[YRMON] = {'&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;' &amp;amp; '2016-03'}&amp;gt;}&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #800000;"&gt;[AutoID]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Oct 2016 12:56:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-an-specific-filter-on-a-line-chart/m-p/1180558#M884143</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2016-10-04T12:56:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to add an specific filter on a line chart?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-an-specific-filter-on-a-line-chart/m-p/1180559#M884144</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Didn't work. I got a big X on the chart:&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/139562_pastedImage_0.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Oct 2016 13:38:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-an-specific-filter-on-a-line-chart/m-p/1180559#M884144</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-10-04T13:38:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to add an specific filter on a line chart?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-an-specific-filter-on-a-line-chart/m-p/1180560#M884145</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is what I did to fix this problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First added 2 fields in the script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;&lt;STRONG&gt;LOAD&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; *, &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Mid&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;YRMON&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,1,4) &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;YR_Cal&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Mid&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;YRMON&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,6,2) &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Month&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then I used them in the expression filter as the following:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Count&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;({1&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;YR_Cal&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;={2016}, &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Month&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;={&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;"&amp;gt;03"&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;} &amp;gt;} &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;AutoID&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The filter is working correctly. &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/wink.png" /&gt; thank you all for your effort.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Oct 2016 16:06:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-an-specific-filter-on-a-line-chart/m-p/1180560#M884145</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-10-06T16:06:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to add an specific filter on a line chart?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-an-specific-filter-on-a-line-chart/m-p/1180561#M884146</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good.&amp;nbsp; close this link by giving Correct and Helpful answers to the posts which helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Oct 2016 02:48:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-an-specific-filter-on-a-line-chart/m-p/1180561#M884146</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2016-10-07T02:48:01Z</dc:date>
    </item>
  </channel>
</rss>

