Skip to main content
Announcements
July 15, NEW Customer Portal: Initial launch will improve how you submit Support Cases. IMPORTANT DETAILS
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Need Help Urgent....

Hello Everybody,

Need ur help....

In the bottom chart of the below attachment I want Quarter 2 i.e. Q2 to be the first bar followed by Q3 and Q4.

It should be in the following order Q2-Q3-Q4-Q1.

Could anyone help me how to achieve that?

Thanks in Advance.....

1 Solution

Accepted Solutions
Not applicable
Author

Thank you all for all your reply...

In sort tab I tried with:

=match(Quarter,'Q2','Q3','Q4','Q1')

And it worked


View solution in original post

17 Replies
alexandros17
Partner - Champion III
Partner - Champion III

In the sort tab of your chart:

use sort by expression then write (using obviously your fields)

If(Quarter='Q2', 1, If(Quarter='Q3', 2, If(Quarter='Q4', 3, 4)) )

Let me know

Alexandros

Not applicable
Author

I Tried this..But it's not woking

tresesco
MVP
MVP

Fastest way of getting answered is to upload sample, see: Preparing examples for Upload - Reduction and D... | Qlik Community

alexandros17
Partner - Champion III
Partner - Champion III

Can you attach your document?

SergeyMak
Partner Ambassador
Partner Ambassador

can you show the definition of Quaters from load script and Sort tab for your chart

Regards,
Sergey
Not applicable
Author

I Tried this..But it's not woking

Not applicable
Author

I have already attached the document


SergeyMak
Partner Ambassador
Partner Ambassador

You attached an image, but not qlikview app

Regards,
Sergey
Not applicable
Author

In Dimention tab I have used this expression:

 

=

Replace( if(Souce.='Current Month' or
Souce. =Year(AddMonths(MonthEnd(Today()),-3)) & ' Qtr ' & Ceil(month(AddMonths(MonthEnd(Today()),-3))/3)
or
Souce. = Year(AddMonths(MonthEnd(Today()),-6)) & ' Qtr ' & Ceil(month(AddMonths(MonthEnd(Today()),-6))/3) ,
Souce.),'Current Month',Year((MonthEnd(Today()))) & ' Qtr ' & Ceil(month((MonthEnd(Today())))/3))