Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
Please advice how can the below sorting problem in Drill down dimension in bar chart be resolved.
I have a drill down dimension (Year->Quarter->Month). For Year, it sorting correctly. But If I go to further Quarter level, it is showing in Different order. Please refer the below screen shot.
try like:
Dual('Q'&Ceil(Month(TempDate)/3), Ceil(Month(TempDate)/3)) as Quarter
Hi Arockiya,
I believe it is a reported bug: The drill-down dimension is sorted by loaded order. The workaround at the moment is to execute the following inline load first, and the Quarter dimension will be ordered as you expect.
Load * Inline [
Quarter
Q1
Q2
Q3
Q4
];
Regards,
Masaki
While creating Quarter in your calendar, use dual. So that your Q1 to Q4 will be attached to a number. Then sort numerically and you will get them in order.
Hi Ravi,
Thanks a lot for the response. I am creating Quarter in my Main calender like below.
'Q'&Ceil(Month(TempDate)/3) as Quarter
Please advise how can I dual() here as I am new to Qlik sense. Thanks in advance.
Regards,
Arockiya.
try like:
Dual('Q'&Ceil(Month(TempDate)/3), Ceil(Month(TempDate)/3)) as Quarter
I had the same problem, I fixed by sorting by number in each level of the Drill Down.