Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I've a Pie-Chart expression values like this.
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.
You could use an expression to sort your dimension (in tab sort), like:
pick(match(YourDimension, 'Stock', 'Credit Hold', ...), 1, 2, ...)
- Marcus
You could use an expression to sort your dimension (in tab sort), like:
pick(match(YourDimension, 'Stock', 'Credit Hold', ...), 1, 2, ...)
- Marcus
Hello,
You can create an Inline for this type sorting.
You can load a dummy table to establish the sort order.
http://qlikviewcookbook.com/2012/11/establishing-a-sort-order/
-Rob
thank you sooooo much Marcus. It worked 🙂 Keep up your good work.