<?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 How to display Fiscal Quarter in the format of F4 - 2018, F1- 2019 , F2-2019? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-display-Fiscal-Quarter-in-the-format-of-F4-2018-F1-2019/m-p/1521898#M747489</link>
    <description>&lt;P&gt;Hi All,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have requirement to show the Fiscal Quarters in the below format&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;For Jan - Mar 2018&amp;nbsp; &amp;nbsp; &amp;nbsp;= F4 - 2018&lt;/LI&gt;&lt;LI&gt;For Apr - June 2018&amp;nbsp; &amp;nbsp;= F1 - 2019&lt;/LI&gt;&lt;LI&gt;For July - Sept 2018&amp;nbsp; =&amp;nbsp; F2 - 2019&amp;nbsp;&lt;/LI&gt;&lt;LI&gt;For Oct - Dec 2018&amp;nbsp; &amp;nbsp; &amp;nbsp;= F3 - 2019&amp;nbsp;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please help me to obtain this format in Qlikview. Currently, I have&amp;nbsp; below syntax which shows the Quarters correctly however, the YYYY part is missing&amp;nbsp; and yes I do want to see 2019 from Apr to Dec of 2018 year.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;'Q' &amp;amp; Ceil(Month(Relevant_Date)/3),&lt;BR /&gt;'Q' &amp;amp; alt (if(Month(Relevant_Date)&amp;lt;4,4),if(Month(Relevant_Date)&amp;lt;7,1),if(Month&lt;BR /&gt;(Relevant_Date)&amp;lt;10,2),3) as Quarter,&lt;/P&gt;</description>
    <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
    <dc:creator>arunqlik2view</dc:creator>
    <dc:date>2020-11-25T16:16:04Z</dc:date>
    <item>
      <title>How to display Fiscal Quarter in the format of F4 - 2018, F1- 2019 , F2-2019?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-display-Fiscal-Quarter-in-the-format-of-F4-2018-F1-2019/m-p/1521898#M747489</link>
      <description>&lt;P&gt;Hi All,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have requirement to show the Fiscal Quarters in the below format&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;For Jan - Mar 2018&amp;nbsp; &amp;nbsp; &amp;nbsp;= F4 - 2018&lt;/LI&gt;&lt;LI&gt;For Apr - June 2018&amp;nbsp; &amp;nbsp;= F1 - 2019&lt;/LI&gt;&lt;LI&gt;For July - Sept 2018&amp;nbsp; =&amp;nbsp; F2 - 2019&amp;nbsp;&lt;/LI&gt;&lt;LI&gt;For Oct - Dec 2018&amp;nbsp; &amp;nbsp; &amp;nbsp;= F3 - 2019&amp;nbsp;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please help me to obtain this format in Qlikview. Currently, I have&amp;nbsp; below syntax which shows the Quarters correctly however, the YYYY part is missing&amp;nbsp; and yes I do want to see 2019 from Apr to Dec of 2018 year.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;'Q' &amp;amp; Ceil(Month(Relevant_Date)/3),&lt;BR /&gt;'Q' &amp;amp; alt (if(Month(Relevant_Date)&amp;lt;4,4),if(Month(Relevant_Date)&amp;lt;7,1),if(Month&lt;BR /&gt;(Relevant_Date)&amp;lt;10,2),3) as Quarter,&lt;/P&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-display-Fiscal-Quarter-in-the-format-of-F4-2018-F1-2019/m-p/1521898#M747489</guid>
      <dc:creator>arunqlik2view</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to display Fiscal Quarter in the format of F4 - 2018, F1- 2019 , F2-2019?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-display-Fiscal-Quarter-in-the-format-of-F4-2018-F1-2019/m-p/1521927#M747490</link>
      <description>Hi Arun,&lt;BR /&gt;The first idea occurred to me is using hard-code. I don't know whether you wanna use or not.&lt;BR /&gt;Like:&lt;BR /&gt;If(Relevant_Date &amp;gt;= '2018-01-01' and Relevant_Date &amp;lt; '2018-04-01','F4 - 2018',&lt;BR /&gt;if(Relevant_Date &amp;gt;= '2018-04-01' and Relevant_Date &amp;lt; '2018-07-01','F1 - 2019',&lt;BR /&gt;.....&lt;BR /&gt;&lt;BR /&gt;Thanks.&lt;BR /&gt;Aiolos</description>
      <pubDate>Tue, 18 Dec 2018 06:36:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-display-Fiscal-Quarter-in-the-format-of-F4-2018-F1-2019/m-p/1521927#M747490</guid>
      <dc:creator>uacg0009</dc:creator>
      <dc:date>2018-12-18T06:36:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to display Fiscal Quarter in the format of F4 - 2018, F1- 2019 , F2-2019?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-display-Fiscal-Quarter-in-the-format-of-F4-2018-F1-2019/m-p/1522013#M747491</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;SPAN&gt;Aiolos, &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks for the reply. Yes, I don't want to use the hard code way.&amp;nbsp; I looking forward to use the syntax in the Qlikview Editor, so That&amp;nbsp; I can use it in Dimensions whenever I want them .&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Arun&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Dec 2018 08:59:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-display-Fiscal-Quarter-in-the-format-of-F4-2018-F1-2019/m-p/1522013#M747491</guid>
      <dc:creator>arunqlik2view</dc:creator>
      <dc:date>2018-12-18T08:59:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to display Fiscal Quarter in the format of F4 - 2018, F1- 2019 , F2-2019?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-display-Fiscal-Quarter-in-the-format-of-F4-2018-F1-2019/m-p/1522019#M747492</link>
      <description>Hi,&lt;BR /&gt;I don't try it in my scripts, but I think it will work, please try:&lt;BR /&gt;if(month(Relevant_Date) &amp;lt; 4,'F4 - ' &amp;amp; Year(Relevant_Date),&lt;BR /&gt;if(month(Relevant_Date) &amp;lt; 7,'F1 - ' &amp;amp; Year(Relevant_Date) + 1,&lt;BR /&gt;if(month(Relevant_Date) &amp;lt; 10,'F2 - ' &amp;amp; Year(Relevant_Date) + 1,&lt;BR /&gt;'F3 - ' &amp;amp; Year(Relevant_Date) + 1)))&lt;BR /&gt;&lt;BR /&gt;Aiolos</description>
      <pubDate>Tue, 18 Dec 2018 09:16:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-display-Fiscal-Quarter-in-the-format-of-F4-2018-F1-2019/m-p/1522019#M747492</guid>
      <dc:creator>uacg0009</dc:creator>
      <dc:date>2018-12-18T09:16:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to display Fiscal Quarter in the format of F4 - 2018, F1- 2019 , F2-2019?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-display-Fiscal-Quarter-in-the-format-of-F4-2018-F1-2019/m-p/1522033#M747493</link>
      <description>Hi,&lt;BR /&gt;I hope this should work for you !!&lt;BR /&gt;'F' &amp;amp; (Month(AddMonths(QuarterStart(Relevant_Date), -1)) / 3) &amp;amp; ' - ' &amp;amp; Year(AddMonths(MonthStart(Relevant_Date), 9))</description>
      <pubDate>Tue, 18 Dec 2018 09:30:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-display-Fiscal-Quarter-in-the-format-of-F4-2018-F1-2019/m-p/1522033#M747493</guid>
      <dc:creator>santhiqlik</dc:creator>
      <dc:date>2018-12-18T09:30:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to display Fiscal Quarter in the format of F4 - 2018, F1- 2019 , F2-2019?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-display-Fiscal-Quarter-in-the-format-of-F4-2018-F1-2019/m-p/1522052#M747494</link>
      <description>&lt;P&gt;Hi Arun,&lt;/P&gt;&lt;P&gt;Trying using the following Script&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;LOAD&lt;BR /&gt;Relevant_Date,&lt;BR /&gt;'Q' &amp;amp; Ceil (Month(Relevant_Date)/3) as Quarter,&lt;BR /&gt;If(Month(Relevant_Date)&amp;lt;4,'F4'&amp;amp;'-'&amp;amp;Year(Relevant_Date),&lt;BR /&gt;If(Month(Relevant_Date)&amp;lt;7,'F1'&amp;amp;'-'&amp;amp;Year(AddYears(Relevant_Date,+1)),&lt;BR /&gt;If(Month(Relevant_Date)&amp;lt;10,'F2'&amp;amp;'-'&amp;amp;Year(AddYears(Relevant_Date,+1)),'F3'&amp;amp;'-'&amp;amp;Year(AddYears(Relevant_Date,+1)))))as Fiscal Calendar&lt;/P&gt;</description>
      <pubDate>Tue, 18 Dec 2018 09:59:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-display-Fiscal-Quarter-in-the-format-of-F4-2018-F1-2019/m-p/1522052#M747494</guid>
      <dc:creator>libinanto95</dc:creator>
      <dc:date>2018-12-18T09:59:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to display Fiscal Quarter in the format of F4 - 2018, F1- 2019 , F2-2019?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-display-Fiscal-Quarter-in-the-format-of-F4-2018-F1-2019/m-p/1522381#M747495</link>
      <description>&lt;P&gt;Hi ,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank for your solution. Your syntax worked for me.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If(Month(Relevant_Date)&amp;lt;7,'F1'&amp;amp;'-'&amp;amp;Year(AddYears(Relevant_Date,+1)),&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If(Month(Relevant_Date)&amp;lt;10,'F2'&amp;amp;'-'&amp;amp;Year(AddYears(Relevant_Date,+1)),'F3'&amp;amp;'-'&amp;amp;Year(AddYears(Relevant_Date,+1)))))as Fiscal Calendar&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks &amp;amp; Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Arun&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Dec 2018 05:00:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-display-Fiscal-Quarter-in-the-format-of-F4-2018-F1-2019/m-p/1522381#M747495</guid>
      <dc:creator>arunqlik2view</dc:creator>
      <dc:date>2018-12-19T05:00:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to display Fiscal Quarter in the format of F4 - 2018, F1- 2019 , F2-2019?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-display-Fiscal-Quarter-in-the-format-of-F4-2018-F1-2019/m-p/1522382#M747496</link>
      <description>&lt;P&gt;Hi , Thanks for the reply. I really appreciate the efforts you have taken.&amp;nbsp;&lt;BR /&gt;I tried this in my Dimension section and it did not work for me.&amp;nbsp; Please let me if know I should be using this syntax somewhere else.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also, please note that my issue got fixed by using the following syntax in the QVW editor which was provided by another contributor like you.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If(Month(Relevant_Date)&amp;lt;7,'F1'&amp;amp;'-'&amp;amp;Year(AddYears(Relevant_Date,+1)),&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If(Month(Relevant_Date)&amp;lt;10,'F2'&amp;amp;'-'&amp;amp;Year(AddYears(Relevant_Date,+1)),'F3'&amp;amp;'-'&amp;amp;Year(AddYears(Relevant_Date,+1)))))as Fiscal Calendar&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Once again thanks for all the efforts.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks &amp;amp; regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Arun&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Dec 2018 05:04:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-display-Fiscal-Quarter-in-the-format-of-F4-2018-F1-2019/m-p/1522382#M747496</guid>
      <dc:creator>arunqlik2view</dc:creator>
      <dc:date>2018-12-19T05:04:53Z</dc:date>
    </item>
  </channel>
</rss>

