<?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: MakeDate Fiscal Dates in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/MakeDate-Fiscal-Dates/m-p/937150#M977577</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why can't you just do this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;MakeDate(2015, If(MonthNumber &amp;lt;= 9, &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;MonthNumber + 3, &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;MonthNumber - 9)&lt;/SPAN&gt;&lt;/SPAN&gt;, 1)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 31 Aug 2015 06:14:35 GMT</pubDate>
    <dc:creator>sunny_talwar</dc:creator>
    <dc:date>2015-08-31T06:14:35Z</dc:date>
    <item>
      <title>MakeDate Fiscal Dates</title>
      <link>https://community.qlik.com/t5/QlikView/MakeDate-Fiscal-Dates/m-p/937146#M977572</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 Data From Apr to Mar as per fiscal year... I want to define Dates as per Fiscal Month&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like below&lt;/P&gt;&lt;P&gt;Apr - 01-01-15&lt;/P&gt;&lt;P&gt;May-01-02-15&lt;/P&gt;&lt;P&gt;jun- 01-03-15&lt;/P&gt;&lt;P&gt;july- 01-04-15&lt;/P&gt;&lt;P&gt;aug- 01-05-15&lt;/P&gt;&lt;P&gt;sep-01-06-15&lt;/P&gt;&lt;P&gt;oct-01-07-15&lt;/P&gt;&lt;P&gt;nov-01-08-15&lt;/P&gt;&lt;P&gt;Dec- 01-09-15&lt;/P&gt;&lt;P&gt;jan-01-10-16&lt;/P&gt;&lt;P&gt;Feb-01-11-16&lt;/P&gt;&lt;P&gt;Mar-01-12-16&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Right now I m doing like this makedate(2015,MonthNumber,01)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MonthNumber = 01,02,03,04,05,06,07,08,09,10,11,12&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and 01 it is taking Jan instead of Apr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How I can get above result In term&amp;nbsp; of dates..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Aug 2015 05:38:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/MakeDate-Fiscal-Dates/m-p/937146#M977572</guid>
      <dc:creator>abhaysingh</dc:creator>
      <dc:date>2015-08-31T05:38:49Z</dc:date>
    </item>
    <item>
      <title>Re: MakeDate Fiscal Dates</title>
      <link>https://community.qlik.com/t5/QlikView/MakeDate-Fiscal-Dates/m-p/937147#M977573</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try like&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;SET vFiscalYearStartMonth = 4;&lt;/P&gt;
&lt;P&gt;LET vStartDate = Num(YearStart(Today(), -1));&lt;/P&gt;
&lt;P&gt;LET vEndDate = Num(YearEnd(Today()));&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;FiscalCalendar:&lt;/P&gt;
&lt;P&gt;LOAD&lt;/P&gt;
&lt;P&gt;&amp;nbsp; *,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Dual('Q' &amp;amp; Ceil(FiscalMonth/3), Ceil(FiscalMonth/3)) AS FiscalQuarter, // Fiscal Calendar Quarter&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Dual(Text(Date(MonthEnd(Date), 'MMM')), FiscalMonth) AS FiscalMonthName // Fiscal Calendar Month Name&lt;/P&gt;
&lt;P&gt;&amp;nbsp; ;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;LOAD&lt;/P&gt;
&lt;P&gt;&amp;nbsp; *,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Year(Date) AS Year, // Standard Calendar Year&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Month(Date) AS Month, // Standard Calendar Month&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Date(MonthEnd(Date), 'MMM') AS MonthName,&amp;nbsp; // Standard Calendar Month Name&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Dual('Q' &amp;amp; Ceil(Month(Date)/3), Ceil(Month(Date)/3)) AS Quarter,&amp;nbsp; // Standard Calendar Quarter&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Mod(Month(Date) - $(vFiscalYearStartMonth), 12)+1 AS FiscalMonth,&amp;nbsp; // Fiscal Calendar Month&lt;/P&gt;
&lt;P&gt;&amp;nbsp; YearName(Date, 0, $(vFiscalYearStartMonth)) AS FiscalYear;&amp;nbsp; // Fiscal Calendar Year&lt;/P&gt;
&lt;P&gt;&amp;nbsp; ;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;LOAD&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Date($(vStartDate) + RangeSum(Peek('RowNum'), 1) - 1) AS Date,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; RangeSum(Peek('RowNum'), 1) AS RowNum&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;AutoGenerate vEndDate - vStartDate + 1;&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Aug 2015 05:45:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/MakeDate-Fiscal-Dates/m-p/937147#M977573</guid>
      <dc:creator>senpradip007</dc:creator>
      <dc:date>2015-08-31T05:45:37Z</dc:date>
    </item>
    <item>
      <title>Re: MakeDate Fiscal Dates</title>
      <link>https://community.qlik.com/t5/QlikView/MakeDate-Fiscal-Dates/m-p/937148#M977574</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Load *,Month(Addmonths(Date,3))as Month;&lt;/P&gt;&lt;P&gt;Load * Inline [&lt;/P&gt;&lt;P&gt;Date&lt;/P&gt;&lt;P&gt;01-01-15&lt;/P&gt;&lt;P&gt;01-02-15&lt;/P&gt;&lt;P&gt;01-03-15&lt;/P&gt;&lt;P&gt;01-04-15&lt;/P&gt;&lt;P&gt;01-05-15&lt;/P&gt;&lt;P&gt;01-06-15&lt;/P&gt;&lt;P&gt;01-07-15&lt;/P&gt;&lt;P&gt;01-08-15&lt;/P&gt;&lt;P&gt;01-09-15&lt;/P&gt;&lt;P&gt;01-10-16&lt;/P&gt;&lt;P&gt;01-11-16&lt;/P&gt;&lt;P&gt;01-12-16];&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Aug 2015 05:47:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/MakeDate-Fiscal-Dates/m-p/937148#M977574</guid>
      <dc:creator>qlikmsg4u</dc:creator>
      <dc:date>2015-08-31T05:47:59Z</dc:date>
    </item>
    <item>
      <title>Re: MakeDate Fiscal Dates</title>
      <link>https://community.qlik.com/t5/QlikView/MakeDate-Fiscal-Dates/m-p/937149#M977575</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;Try using Pick function in load script like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD Month, &lt;/P&gt;&lt;P&gt;MonthNumber,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PICK(WildMatch(Month,'APR','MAY','JUN','JUL','AUG','SEP','OCT','NOV','DEC','JAN','FEB','MAR'),1,2,3,4,5,6,7,8,9,10,11,12) AS MonthNo&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;C:\Users\Pooja.Joshi\Documents\Community1.xlsx&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet2);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And use this MonthNo in your expression:&amp;nbsp; &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;makedate(2015,MonthNo,01)&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Aug 2015 06:05:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/MakeDate-Fiscal-Dates/m-p/937149#M977575</guid>
      <dc:creator />
      <dc:date>2015-08-31T06:05:12Z</dc:date>
    </item>
    <item>
      <title>Re: MakeDate Fiscal Dates</title>
      <link>https://community.qlik.com/t5/QlikView/MakeDate-Fiscal-Dates/m-p/937150#M977577</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why can't you just do this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;MakeDate(2015, If(MonthNumber &amp;lt;= 9, &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;MonthNumber + 3, &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;MonthNumber - 9)&lt;/SPAN&gt;&lt;/SPAN&gt;, 1)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Aug 2015 06:14:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/MakeDate-Fiscal-Dates/m-p/937150#M977577</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-08-31T06:14:35Z</dc:date>
    </item>
    <item>
      <title>Re: MakeDate Fiscal Dates</title>
      <link>https://community.qlik.com/t5/QlikView/MakeDate-Fiscal-Dates/m-p/937151#M977579</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Abhay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U need to create an inline table as shown&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD * Inline [&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;month,fiscal_monthnum&lt;/P&gt;&lt;P&gt;Apr,1&lt;/P&gt;&lt;P&gt;May,2&lt;/P&gt;&lt;P&gt;Jun,3&lt;/P&gt;&lt;P&gt;Jul,4&lt;/P&gt;&lt;P&gt;Aug,5&lt;/P&gt;&lt;P&gt;Sep,6&lt;/P&gt;&lt;P&gt;Oct,7&lt;/P&gt;&lt;P&gt;Nov,8&lt;/P&gt;&lt;P&gt;Dec,9&lt;/P&gt;&lt;P&gt;Jan,10&lt;/P&gt;&lt;P&gt;Feb,11&lt;/P&gt;&lt;P&gt;Mar,12 ];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then u can write code MakeDate(2015,fiscal_monthnum,01) as Date&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Aug 2015 06:21:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/MakeDate-Fiscal-Dates/m-p/937151#M977579</guid>
      <dc:creator>parthakk</dc:creator>
      <dc:date>2015-08-31T06:21:42Z</dc:date>
    </item>
    <item>
      <title>Re: MakeDate Fiscal Dates</title>
      <link>https://community.qlik.com/t5/QlikView/MakeDate-Fiscal-Dates/m-p/937152#M977581</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;Use your logic as it is&lt;/P&gt;&lt;P&gt;just Replace below set variable&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SET MonthNames='Apr;May;Jun;Jul;Aug;Sep;Oct;Nov;Dec;Jan;Feb;Mar'; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET MonthNames='Jan;Feb;Mar;Apr;May;Jun;Jul;Aug;Sep;Oct;Nov;Dec';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Aug 2015 06:35:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/MakeDate-Fiscal-Dates/m-p/937152#M977581</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2015-08-31T06:35:34Z</dc:date>
    </item>
    <item>
      <title>Re: MakeDate Fiscal Dates</title>
      <link>https://community.qlik.com/t5/QlikView/MakeDate-Fiscal-Dates/m-p/937153#M977583</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Will it not affect normal months as well?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Aug 2015 06:52:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/MakeDate-Fiscal-Dates/m-p/937153#M977583</guid>
      <dc:creator>sasiparupudi1</dc:creator>
      <dc:date>2015-08-31T06:52:24Z</dc:date>
    </item>
    <item>
      <title>Re: MakeDate Fiscal Dates</title>
      <link>https://community.qlik.com/t5/QlikView/MakeDate-Fiscal-Dates/m-p/937154#M977584</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Sunny,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually the real scenario is I have Month wise targets in cross table format Not specific format...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jan to Dec but this is for Fiscal Year Apr to Mar i.e 2015-2016&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and My calendar is as Fiscal Year..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In target with the help of I have created months into Number first by &lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;month&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;num&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Date#&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;,'MMM'))) &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;MonthNum&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;now I got MonthNum like Jan, feb, mar till Dec..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And When using it into Make Date it is giving me&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;jan-01-01-15&lt;/P&gt;&lt;P&gt;Feb-01-02-15&lt;/P&gt;&lt;P&gt;Mar-01-03-15&lt;/P&gt;&lt;P&gt;Apr - 01-04-15&lt;/P&gt;&lt;P&gt;May-01-05-15&lt;/P&gt;&lt;P&gt;jun- 01-06-15&lt;/P&gt;&lt;P&gt;july- 01-07-15&lt;/P&gt;&lt;P&gt;aug- 01-08-15&lt;/P&gt;&lt;P&gt;sep-01-09-15&lt;/P&gt;&lt;P&gt;oct-01-10-15&lt;/P&gt;&lt;P&gt;nov-01-11-15&lt;/P&gt;&lt;P&gt;Dec- 01-12-15&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;bu this &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;MakeDate(2015, If(MonthNumber &amp;lt;= 9, &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;MonthNumber + 3, &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;MonthNumber - 9)&lt;/SPAN&gt;&lt;/SPAN&gt;, 1)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;I m getting&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width: 148px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD align="right" height="17" style="border-width: 0px 0.5pt; border-style: none solid; border-color: #333333 gainsboro; background-color: white;" width="148"&gt;&lt;SPAN style="color: #333333; font-family: Tahoma;"&gt;01-01-15&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD align="right" height="17" style="border-width: 0px 0.5pt; border-style: none solid; border-color: #333333 gainsboro; background-color: white;" width="148"&gt;oct&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="17" style="border-width: 0px 0.5pt; border-style: none solid; border-color: #333333 gainsboro; background-color: white;"&gt;&lt;SPAN style="color: #333333; font-family: Tahoma;"&gt;01-02-15&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD align="right" height="17" style="border-width: 0px 0.5pt; border-style: none solid; border-color: #333333 gainsboro; background-color: white;"&gt;Nov&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="17" style="border-width: 0px 0.5pt; border-style: none solid; border-color: #333333 gainsboro; background-color: white;"&gt;&lt;SPAN style="color: #333333; font-family: Tahoma;"&gt;01-03-15&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD align="right" height="17" style="border-width: 0px 0.5pt; border-style: none solid; border-color: #333333 gainsboro; background-color: white;"&gt;Dec&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="17" style="border-width: 0px 0.5pt; border-style: none solid; border-color: #333333 gainsboro; background-color: white;"&gt;&lt;SPAN style="color: #333333; font-family: Tahoma;"&gt;01-04-15&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD align="right" height="17" style="border-width: 0px 0.5pt; border-style: none solid; border-color: #333333 gainsboro; background-color: white;"&gt;Jan&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="17" style="border-width: 0px 0.5pt; border-style: none solid; border-color: #333333 gainsboro; background-color: white;"&gt;&lt;SPAN style="color: #333333; font-family: Tahoma;"&gt;01-05-15&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD align="right" height="17" style="border-width: 0px 0.5pt; border-style: none solid; border-color: #333333 gainsboro; background-color: white;"&gt;Feb&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="17" style="border-width: 0px 0.5pt; border-style: none solid; border-color: #333333 gainsboro; background-color: white;"&gt;&lt;SPAN style="color: #333333; font-family: Tahoma;"&gt;01-06-15&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD align="right" height="17" style="border-width: 0px 0.5pt; border-style: none solid; border-color: #333333 gainsboro; background-color: white;"&gt;Mar&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="17" style="border-width: 0px 0.5pt; border-style: none solid; border-color: #333333 gainsboro; background-color: white;"&gt;&lt;SPAN style="color: #333333; font-family: Tahoma;"&gt;01-07-15&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD align="right" height="17" style="border-width: 0px 0.5pt; border-style: none solid; border-color: #333333 gainsboro; background-color: white;"&gt;Apr&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="17" style="border-width: 0px 0.5pt; border-style: none solid; border-color: #333333 gainsboro; background-color: white;"&gt;&lt;SPAN style="color: #333333; font-family: Tahoma;"&gt;01-08-15&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD align="right" height="17" style="border-width: 0px 0.5pt; border-style: none solid; border-color: #333333 gainsboro; background-color: white;"&gt;May&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="17" style="border-width: 0px 0.5pt; border-style: none solid; border-color: #333333 gainsboro; background-color: white;"&gt;&lt;SPAN style="color: #333333; font-family: Tahoma;"&gt;01-09-15&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD align="right" height="17" style="border-width: 0px 0.5pt; border-style: none solid; border-color: #333333 gainsboro; background-color: white;"&gt;Jun&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="17" style="border-width: 0px 0.5pt; border-style: none solid; border-color: #333333 gainsboro; background-color: white;"&gt;&lt;SPAN style="color: #333333; font-family: Tahoma;"&gt;01-10-15&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD align="right" height="17" style="border-width: 0px 0.5pt; border-style: none solid; border-color: #333333 gainsboro; background-color: white;"&gt;July&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="17" style="border-width: 0px 0.5pt; border-style: none solid; border-color: #333333 gainsboro; background-color: white;"&gt;&lt;SPAN style="color: #333333; font-family: Tahoma;"&gt;01-11-15&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD align="right" height="17" style="border-width: 0px 0.5pt; border-style: none solid; border-color: #333333 gainsboro; background-color: white;"&gt;Aug&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="17" style="border-width: 0px 0.5pt; border-style: none solid; border-color: #333333 gainsboro; background-color: white;"&gt;&lt;SPAN style="color: #333333; font-family: Tahoma;"&gt;01-12-15&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD align="right" height="17" style="border-width: 0px 0.5pt; border-style: none solid; border-color: #333333 gainsboro; background-color: white;"&gt;&lt;P&gt;Sep&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How I can get Apr as 01-04-15 and Jan as 01-10-15&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for support&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Aug 2015 07:02:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/MakeDate-Fiscal-Dates/m-p/937154#M977584</guid>
      <dc:creator>abhaysingh</dc:creator>
      <dc:date>2015-08-31T07:02:42Z</dc:date>
    </item>
    <item>
      <title>Re: MakeDate Fiscal Dates</title>
      <link>https://community.qlik.com/t5/QlikView/MakeDate-Fiscal-Dates/m-p/937155#M977585</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sry pls consider following output&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How I can get Apr as 01-01-15 and Jan as 01-10-16&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Aug 2015 07:04:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/MakeDate-Fiscal-Dates/m-p/937155#M977585</guid>
      <dc:creator>abhaysingh</dc:creator>
      <dc:date>2015-08-31T07:04:39Z</dc:date>
    </item>
    <item>
      <title>Re: MakeDate Fiscal Dates</title>
      <link>https://community.qlik.com/t5/QlikView/MakeDate-Fiscal-Dates/m-p/937156#M977586</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See if this one helps:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;MakeDate(&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;If(MonthNumber &amp;gt;= 4, 2015&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;, &lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;2016)&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;, If(MonthNumber &amp;gt;= 4, &lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;MonthNumber - 3, &lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;MonthNumber + 9)&lt;/SPAN&gt;&lt;/SPAN&gt;, 1)&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Aug 2015 07:15:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/MakeDate-Fiscal-Dates/m-p/937156#M977586</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-08-31T07:15:01Z</dc:date>
    </item>
    <item>
      <title>Re: MakeDate Fiscal Dates</title>
      <link>https://community.qlik.com/t5/QlikView/MakeDate-Fiscal-Dates/m-p/937157#M977587</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You may try the &lt;STRONG style="font-size: 13.3333330154419px;"&gt;YearStart()&lt;/STRONG&gt; function as below code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SET vStartDate = '01-Jan-2015';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SET vEndDate = '01-Dec-2015';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DateCal:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD *, YearStart(Date,1,4+RecNo()-1) as FDate;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; AddMonths(Date(Date#('$(vStartDate)','DD-MMM-YYYY'),'DD/MM/YYYY'), RecNo()-1) as Date&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;AutoGenerate 12;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Som&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Aug 2015 07:52:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/MakeDate-Fiscal-Dates/m-p/937157#M977587</guid>
      <dc:creator>somenathroy</dc:creator>
      <dc:date>2015-08-31T07:52:09Z</dc:date>
    </item>
    <item>
      <title>Re: MakeDate Fiscal Dates</title>
      <link>https://community.qlik.com/t5/QlikView/MakeDate-Fiscal-Dates/m-p/937158#M977588</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;Have you try my suggestion??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Aug 2015 07:56:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/MakeDate-Fiscal-Dates/m-p/937158#M977588</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2015-08-31T07:56:43Z</dc:date>
    </item>
    <item>
      <title>Re: MakeDate Fiscal Dates</title>
      <link>https://community.qlik.com/t5/QlikView/MakeDate-Fiscal-Dates/m-p/937159#M977589</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Abhay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please change the default month names as shown below. Hope this will help you. Thank you.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;SET MonthNames='Apr;May;Jun;Jul;Aug;Sep;Oct;Nov;Dec;Jan;Feb;Mar';&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Aug 2015 08:04:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/MakeDate-Fiscal-Dates/m-p/937159#M977589</guid>
      <dc:creator>qlikviewwizard</dc:creator>
      <dc:date>2015-08-31T08:04:47Z</dc:date>
    </item>
  </channel>
</rss>

