<?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: Date greater than in visualization in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Date-greater-than-in-visualization/m-p/10907#M782</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kyle,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The way I do it is by limiting the returned values of the dimension and expressions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's one that limits the returned dates to 2018 or later. &lt;/P&gt;&lt;P&gt;if(Year(Promo_To_Date)&amp;gt;='2018',Date(Promo_To_Date,'DD.MM.YYYY')+1)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or if you wish to use a sliding window then something like this.&lt;/P&gt;&lt;P&gt;if(Date(Promo_To_Date,'DD.MM.YYYY')&amp;gt;=Addmonths(Date(Today(2),'DD.MM.YYYY'),-1),Date(Promo_To_Date,'DD.MM.YYYY')+1)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After this I disable Null values on the field and I'm only left with the selected date range hard coded in the chart.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 19 Jun 2018 06:00:26 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2018-06-19T06:00:26Z</dc:date>
    <item>
      <title>Date greater than in visualization</title>
      <link>https://community.qlik.com/t5/App-Development/Date-greater-than-in-visualization/m-p/10904#M779</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a combo bar/line graph that's displaying all the data for all the dates when I really only want it to show data for 3 years.&amp;nbsp; I have the dimension field as &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=Dual(Year([Date])&amp;amp;'-'&amp;amp;Month([Date]),MonthStart([Date]))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Which is working just fine to give the month-year.&amp;nbsp; I just can't seem to get the graph to start at about Jan-2015&lt;/P&gt;&lt;P&gt;&lt;IMG alt="GraphExamp.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/200811_GraphExamp.PNG" style="height: 202px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Apr 2018 15:11:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Date-greater-than-in-visualization/m-p/10904#M779</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-04-27T15:11:04Z</dc:date>
    </item>
    <item>
      <title>Re: Date greater than in visualization</title>
      <link>https://community.qlik.com/t5/App-Development/Date-greater-than-in-visualization/m-p/10905#M780</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;you should use a set analysis inside your expression, what is the expression you're using ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Apr 2018 15:53:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Date-greater-than-in-visualization/m-p/10905#M780</guid>
      <dc:creator>YoussefBelloum</dc:creator>
      <dc:date>2018-04-27T15:53:12Z</dc:date>
    </item>
    <item>
      <title>Re: Date greater than in visualization</title>
      <link>https://community.qlik.com/t5/App-Development/Date-greater-than-in-visualization/m-p/10906#M781</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The expression posted above is what I'm using as a dimension for date&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Apr 2018 18:22:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Date-greater-than-in-visualization/m-p/10906#M781</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-04-27T18:22:50Z</dc:date>
    </item>
    <item>
      <title>Re: Date greater than in visualization</title>
      <link>https://community.qlik.com/t5/App-Development/Date-greater-than-in-visualization/m-p/10907#M782</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kyle,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The way I do it is by limiting the returned values of the dimension and expressions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's one that limits the returned dates to 2018 or later. &lt;/P&gt;&lt;P&gt;if(Year(Promo_To_Date)&amp;gt;='2018',Date(Promo_To_Date,'DD.MM.YYYY')+1)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or if you wish to use a sliding window then something like this.&lt;/P&gt;&lt;P&gt;if(Date(Promo_To_Date,'DD.MM.YYYY')&amp;gt;=Addmonths(Date(Today(2),'DD.MM.YYYY'),-1),Date(Promo_To_Date,'DD.MM.YYYY')+1)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After this I disable Null values on the field and I'm only left with the selected date range hard coded in the chart.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jun 2018 06:00:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Date-greater-than-in-visualization/m-p/10907#M782</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-06-19T06:00:26Z</dc:date>
    </item>
  </channel>
</rss>

