Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
kulasekhar
Creator
Creator

how to create current year fiscal calendar in qlikview

Hi All,

how to create current year fiscal calendar in qlikview

I have 3 years data like:2012-2013

                                   2013-2014

                                   2014-2015

And fiscal start month is Nov.

Place help me.

3 Replies
kulasekhar
Creator
Creator
Author

I want to display Current year data (2014-2015)

ganeshreddy
Creator III
Creator III

Hi sekhar,

for which country fiscal calender ?

anyway take a look at this..

The Master Calendar

Cheers,

Ganesh

Not applicable

Quarter Function

Refer above discussion.

If your First Qtr starts with November you can use :


'Q' & Ceil(Month(AddMonths(Date,-10))/3)


Ex:

Load *,

'Q' & Ceil(Month(AddMonths(Date_Col,-10))/3)   as QTR


;

SQL

Select DATA,

           Date_Col

from Table;