cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Horizontal Sorting

Former Member
0 Likes
270

Hi

Is there any possibility of horizontal sort?

If I select a table at "Properties" I see "Priority Management" and see you can choose the priority in the vertical and horizontal sorts.

Verticals are not a problem, but .... How I can define a horizontal management?

If I had this information and would like to sort by the year ..., how could I do?

 

Year 1Year 2Year 3
Shop 1100014501500
Shop 2800600500
Shop 3750900700
Total255029502700

at

Year 2Year 3Year 1
Shop 1145015001000
Shop 2600500800
Sjop 3900700750
Total295027002550
View Entire Topic
Former Member
0 Likes

Hi Adolfo Sanz ,

Here what you are looking for is dynamic column placement and not a data sorting. The horizontal sorting is just a data sorting but only applicable for horizontal table lay out ...

To achieve this you can use some improvised variable and build your table using those variable ..This process is fairly simple but need much more work than normal table..

For example for coulmn 1 you will have to define a variable like below .. You will have to make a header similarly as well

= If sum([Revenue]) in ([Year1]) = max( sum([Revenue]) in ([Year])  )  forall ([years]) ) then [Year1]

else if sum([Revenue]) in ([Year2]) = max( sum([Revenue]) in ([Year])  )  forall ([years]) ) then [Year2]

esle [Year3]

This process should work as long as you have lesser number of columns to sort howver for more columns it will result in just too much additional work..