Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
MuraliPrasath
Creator III
Creator III

Pie-Chart Quest?

Hi,

I've a Pie-Chart expression values like this.

Inv.JPG

I need to show my values in MY ORDER STYLE like below, instead above Row Lables.

1.Stock

2.Credit Hold,

3.CPU,

4.Planned for Delivery/Shippment

5.Premier

6.Production & Rework

7.Unplanned

8.Return.

1 Solution

Accepted Solutions
marcus_sommer

You could use an expression to sort your dimension (in tab sort), like:

pick(match(YourDimension, 'Stock', 'Credit Hold', ...), 1, 2, ...)

- Marcus

View solution in original post

4 Replies
marcus_sommer

You could use an expression to sort your dimension (in tab sort), like:

pick(match(YourDimension, 'Stock', 'Credit Hold', ...), 1, 2, ...)

- Marcus

Not applicable

Hello,

You can create an Inline for this type sorting.

rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

You can load a dummy table to establish the sort order.

http://qlikviewcookbook.com/2012/11/establishing-a-sort-order/

-Rob

MuraliPrasath
Creator III
Creator III
Author

thank you sooooo much Marcus. It worked 🙂 Keep up your good work.