Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

sort_chart

Hi All

How to sort dimension lets say:

status: PF, Impaired, WL

to PF, WL, impaired

1 Solution

Accepted Solutions
Gysbert_Wassenaar

Create a table for status in the script to fix the sort order:

Status:

LOAD * INLINE [

status

PF

WL

Impaired ];

Load this table before the others so the sort order will be determined by the load of the Status table. You can the use the sort by Load Order option on the Sort tab of the properties window of the object where you use the status dimension.


talk is cheap, supply exceeds demand

View solution in original post

1 Reply
Gysbert_Wassenaar

Create a table for status in the script to fix the sort order:

Status:

LOAD * INLINE [

status

PF

WL

Impaired ];

Load this table before the others so the sort order will be determined by the load of the Status table. You can the use the sort by Load Order option on the Sort tab of the properties window of the object where you use the status dimension.


talk is cheap, supply exceeds demand