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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
cancel
Showing results for 
Search instead for 
Did you mean: 
narayanamsn
Creator
Creator

How to derive Fiscal Quarter?

Hi,

I have Months and want to derive Fiscal Quarters.

How to derive the Quarter based on Month while my year starts with Nov?

 

MonthQtr
Nov1
Dec1
Jan1
Feb2
Mar2
Apr2
May3
Jun3
Jul3
Aug4
Sep4
Oct

4

Regards,

Satya

Labels (1)
3 Replies
PrashantSangle

Hi,

might be this thread help you

Creating Qtr View in Cross table

Regards,

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
tresB
Champion III
Champion III

Try like:

Ceil(If(Month>10, Month-10,  Month+2)/3) as QuarterNum;

tresB
Champion III
Champion III

If your month is not a dual field, you might try like:

Load

       Ceil(If(Month>10, Month-10,  Month+2)/3) as QuarterNum;

Load

       Month(Date#(Month,'MMM')) as Month  Inline [

Month

Jan

Feb

Mar

Apr

May

Jun

Jul

Aug

Sep

Oct

Nov

Dec]