Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all ,
I want to create quaters Q1, Q2 ,Q3 and Q4 to represent Fiscal Year In qlikview.
If I choose Q1 , Qlikview must enable only Apr, May and June .
Thanks in Advance
Arun
You can change this to
SET FirstMonthOfYear=4;
Add this line in master calendar
'Q' & alt(if(Month(TempDate)<4,4),if(Month(TempDate)<7,1),if(Month(TempDate)<10,2),3) AS Quarter,
Thanks Vikas this worked perfect for me.
Thanks Vikas this worked perfect for me.
Thanks Anil for the reply ,
First I tried to change the value to 4 as per post , it did not work for soem reason, Then I chnaged the order of teh months as given below and it worked for me . But I think go Vikas' syntax.
SET MonthNames='Apr;May;Jun;Jul;Aug;Sep;Oct;Nov;Dec;Jan;Feb;Mar;'
SET LongMonthNames='April;May;June;July;August;September;October;November;December;January;February;March;'
Can you please mark as correct answer !!
Vikas