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

How to have a fixed sort order in straight table based on dimension values

Hi,

I have a straight table with 1 Dimension and 6 Expressions.

Soring has to be done on the dimension, the order has to be fixed on any selection.

can some please suggest me how to do this asap.

Thanks!

1 Solution

Accepted Solutions
Marcio_Campestrini
Specialist
Specialist

Hi chinnukool

Create an inline table at the beginning of the script with the below structure:

OrderTitle:

Load * Inline [

   Title

    Partner

    Of Counsel

    Associate

    Paralegal ];

And at the end of the script drop this table.

In the chart properties, at sort tab, unmark all options but 'Load Order', and choose 'Original'.

Márcio Rodrigo Campestrini

View solution in original post

5 Replies
Marcio_Campestrini
Specialist
Specialist

Hi Chinnukool

Try to define your sort order and then disable the "Allow interactive sort' option.

Márcio Rodrigo Campestrini
Frank_Hartmann
Master II
Master II

please share a sample! (if u cannot share make samplefile with modification of your dataset)

without knowing your datamodel its gonna be difficult to give advice!

Marcio_Campestrini
Specialist
Specialist

Hi chinnukool

Create an inline table at the beginning of the script with the below structure:

OrderTitle:

Load * Inline [

   Title

    Partner

    Of Counsel

    Associate

    Paralegal ];

And at the end of the script drop this table.

In the chart properties, at sort tab, unmark all options but 'Load Order', and choose 'Original'.

Márcio Rodrigo Campestrini
Not applicable
Author

Hi Chinnukool,

You have to just create an inline table with 2 columns.

OrderTitle:

Load * Inline [

   Title, SortOrder

    Partner,1

    Of Counsel,2

    Associate,3

    Paralegal ,4];

Now sort it on the SortOrder column.

Anonymous
Not applicable
Author

That worked! thanks much for your help!