<?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: FY year in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/FY-year/m-p/683554#M1068592</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;You can use QV function &lt;STRONG&gt;Yearname&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;like&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;yearname('2001-10-19',0,4)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;will give 2001-2002 in FY format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where 4 is the starting month&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regarding&lt;/P&gt;&lt;P&gt;Kushal Thakral&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 01 Sep 2014 11:26:40 GMT</pubDate>
    <dc:creator>kushalthakral</dc:creator>
    <dc:date>2014-09-01T11:26:40Z</dc:date>
    <item>
      <title>FY year</title>
      <link>https://community.qlik.com/t5/QlikView/FY-year/m-p/683549#M1068587</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;How to create FY Year from Date?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Sep 2014 10:16:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/FY-year/m-p/683549#M1068587</guid>
      <dc:creator>abhaysingh</dc:creator>
      <dc:date>2014-09-01T10:16:51Z</dc:date>
    </item>
    <item>
      <title>Re: FY year</title>
      <link>https://community.qlik.com/t5/QlikView/FY-year/m-p/683550#M1068588</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;There is no single way to make a FY since all companies can have a different FY. If company's FY starts in 1.7 then you could use structure like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// Variables to set YTD and MTD&lt;/P&gt;&lt;P&gt;SET FiscalFirstMonth = 7; // First month of actual fiscal year&lt;/P&gt;&lt;P&gt;LET FiscalDev = $(FiscalFirstMonth)-1; // Fiscal calendar deviation&lt;/P&gt;&lt;P&gt;Calendar:&lt;/P&gt;&lt;P&gt;Load *,&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;Num(Month(Addmonths(Date,$(FiscalDev))),00) as [Fiscal Month No],&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dual('Q'&amp;amp;Num(Ceil(Num(Month(Addmonths(Date,$(FiscalDev))))/3)),Num(Ceil(NUM(Month(Addmonths(Date,$(FiscalDev))))/3),00)) as [Fiscal Quarter],&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and so on.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Br,&lt;/P&gt;&lt;P&gt;Miikka&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Sep 2014 10:21:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/FY-year/m-p/683550#M1068588</guid>
      <dc:creator>miikkaqlick</dc:creator>
      <dc:date>2014-09-01T10:21:27Z</dc:date>
    </item>
    <item>
      <title>Re: FY year</title>
      <link>https://community.qlik.com/t5/QlikView/FY-year/m-p/683551#M1068589</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 want to show only Financial Year&lt;/P&gt;&lt;P&gt;Like 2013-2014&lt;/P&gt;&lt;P&gt;Then use YearName(Date,0,4)&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, 01 Sep 2014 10:21:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/FY-year/m-p/683551#M1068589</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2014-09-01T10:21:37Z</dc:date>
    </item>
    <item>
      <title>Re: FY year</title>
      <link>https://community.qlik.com/t5/QlikView/FY-year/m-p/683552#M1068590</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&amp;nbsp; Adhya,&lt;/P&gt;&lt;P&gt;Suppose your FY starts from Apr then use below in script .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Calender :&lt;/P&gt;&lt;P&gt;Load &lt;/P&gt;&lt;P&gt;Date,&lt;/P&gt;&lt;P&gt;IF(MONTH(Date)&amp;gt;= 4, YEAR(Date)+1, YEAR(Date))&amp;nbsp;&amp;nbsp; as FY&lt;/P&gt;&lt;P&gt;Resident Data;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Sep 2014 10:37:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/FY-year/m-p/683552#M1068590</guid>
      <dc:creator>sunilkumarqv</dc:creator>
      <dc:date>2014-09-01T10:37:33Z</dc:date>
    </item>
    <item>
      <title>Re: FY year</title>
      <link>https://community.qlik.com/t5/QlikView/FY-year/m-p/683553#M1068591</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would personally build the calendar outside of Qlik view and load rather than try to derive it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fiscal Years differ from customer to customer but once set rarely change (Acquistiion/takeovers etc...) &lt;/P&gt;&lt;P&gt;so why make Qlik work on deriving the value for each transaction with a date in it when you can link to a reference table which will have 12 records added a year.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Sep 2014 11:11:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/FY-year/m-p/683553#M1068591</guid>
      <dc:creator>ogster1974</dc:creator>
      <dc:date>2014-09-01T11:11:08Z</dc:date>
    </item>
    <item>
      <title>Re: FY year</title>
      <link>https://community.qlik.com/t5/QlikView/FY-year/m-p/683554#M1068592</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;You can use QV function &lt;STRONG&gt;Yearname&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;like&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;yearname('2001-10-19',0,4)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;will give 2001-2002 in FY format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where 4 is the starting month&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regarding&lt;/P&gt;&lt;P&gt;Kushal Thakral&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Sep 2014 11:26:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/FY-year/m-p/683554#M1068592</guid>
      <dc:creator>kushalthakral</dc:creator>
      <dc:date>2014-09-01T11:26:40Z</dc:date>
    </item>
  </channel>
</rss>

