Forum Discussion
DHB
Helper V
9 years agoSwitch groups in 100% Stacked chart
I'm using a 100% Stacked chart and the legend is either Y or N. I have the N coming up at the bottom of the bar and Y from the top. Is there any way I can switch those two around so that Y starts a...
- 9 years ago
There sure is. Just add a new column to your table that will control the sort order of your Legend column
So please add the following column
Legend Sort = IF('mytable'[Legendcol] = 'Y' , 0 , 1 )Then specify the sort order of your existing column to use this new column using the Sort By Column feature
Phil_Seamark
Microsoft Employee
9 years agoThere sure is. Just add a new column to your table that will control the sort order of your Legend column
So please add the following column
Legend Sort = IF('mytable'[Legendcol] = 'Y' , 0 , 1 )
Then specify the sort order of your existing column to use this new column using the Sort By Column feature