Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Assuming I have the following data:
type
row
value
1
A
10
B
20
C
30
D
40
2
50
11
60
3
Total
100
Is it possible create a table/bar chart which sort by type followed by sum(value). The result is like this:
sum(value)
found a way, is to sort by expression, descending, (4-type)*999999999+sum(value)
and the chart will look like this