Hi, I am trying to build a stacked bar card in which the data in the bar is sorted in ascending/descending order but i want my 'Other' category to be at the top of the bar.
To do this, I created the forced sort beast mode calculation below and then tried to sort on an additional category after that.
Legend Order Calculation
(CASE when `PROD GROUP`='GROUP1' then 1
when `PROD GROUP`='GROUP2' then 1
when `PROD GROUP`='GROUP3' then 1
when `PROD GROUP`='GROUP4' then 1
else 2
end)
Sorting Order
Date Ascending (x axis variable)
Legend Order Ascending (calculation above)
Sum of Cost unaggregated (y axis variable)
It seems that after I sort in a dimension (i.e. vertically or horizontally) that I cannot further sort similar values in that same dimension.
For example, after i sort by legend order (which causes my 'other' group to appear at the top of the stacked bar), i cannot sort the remaining categories by sum of cost unaggregated.
Is there a way to do this or can this feature be added?