<?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: Problem in working with dates in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Problem-in-working-with-dates/m-p/611548#M225693</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could make a single field containing both the year and Qtr.&lt;/P&gt;&lt;P&gt;That way you can select the exact periods - instead of the combinations of Year and Qtr.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 05 Feb 2014 13:49:11 GMT</pubDate>
    <dc:creator>jfkinspari</dc:creator>
    <dc:date>2014-02-05T13:49:11Z</dc:date>
    <item>
      <title>Problem in working with dates</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-in-working-with-dates/m-p/611546#M225691</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 developing a sales application.&lt;/P&gt;&lt;P&gt;My problem statement is as follows:&lt;/P&gt;&lt;P&gt;The opportunities have est. close date. From this date I've create two new fields called Closure Qtr and the Closure Year. Now the problem is, if I select year 13-14 and 14-15 and Qtr as Q1 and Q4, it will show me the data for Q1 13-14, Q4 13-14, Q1 14-15 and Q4 14-15.&lt;/P&gt;&lt;P&gt;However my actual requirement is I want to see data only for Q4 13-14 and Q1 14-15.&lt;/P&gt;&lt;P&gt;Can someone please explain me how to handle these kind of situations?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Feb 2014 13:44:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-in-working-with-dates/m-p/611546#M225691</guid>
      <dc:creator>saurabh_karlewar</dc:creator>
      <dc:date>2014-02-05T13:44:09Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in working with dates</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-in-working-with-dates/m-p/611547#M225692</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Create a field QuarterYear too and make your selection in that field. You can create that by concatenating the Closure Qtr with the Closure Year. For example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MyTable:&lt;/P&gt;&lt;P&gt;LOAD *, [Closure Qtr] &amp;amp; '-' &amp;amp; [Closure Year] as [Closure Quarter-Year];&lt;/P&gt;&lt;P&gt;LOAD *, ... as [Closure Qtr], ... as [Closure Year] FROM ... ;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Feb 2014 13:49:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-in-working-with-dates/m-p/611547#M225692</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2014-02-05T13:49:06Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in working with dates</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-in-working-with-dates/m-p/611548#M225693</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could make a single field containing both the year and Qtr.&lt;/P&gt;&lt;P&gt;That way you can select the exact periods - instead of the combinations of Year and Qtr.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Feb 2014 13:49:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-in-working-with-dates/m-p/611548#M225693</guid>
      <dc:creator>jfkinspari</dc:creator>
      <dc:date>2014-02-05T13:49:11Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in working with dates</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-in-working-with-dates/m-p/611549#M225694</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You will need a new dimension that concatenates the Year and Qtr&lt;/P&gt;&lt;P&gt;so you have 13-14 Q1, 13-14 Q2, 13-14 Q3, 13-14 Q4, 14-15 Q1, etc.&lt;/P&gt;&lt;P&gt;Then you can select 13-14 Q4 and 14-15 Q1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Add this in your load script&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Closure Year] &amp;amp; ' ' &amp;amp; [Closure Qtr] as [Closure YearQtr]&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Feb 2014 13:51:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-in-working-with-dates/m-p/611549#M225694</guid>
      <dc:creator>Colin-Albert</dc:creator>
      <dc:date>2014-02-05T13:51:24Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in working with dates</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-in-working-with-dates/m-p/611550#M225695</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Earlier I used the similar approach, but the problem occurs when the data goes beyond 3 years as every year will have 4 entries for each quarter.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Feb 2014 13:52:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-in-working-with-dates/m-p/611550#M225695</guid>
      <dc:creator>saurabh_karlewar</dc:creator>
      <dc:date>2014-02-05T13:52:52Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in working with dates</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-in-working-with-dates/m-p/611551#M225696</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You will need a list box that will have 4 entries for every year to allow you to select the rolling quarter from one year to the next.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Feb 2014 13:54:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-in-working-with-dates/m-p/611551#M225696</guid>
      <dc:creator>Colin-Albert</dc:creator>
      <dc:date>2014-02-05T13:54:51Z</dc:date>
    </item>
  </channel>
</rss>

