Forum Discussion
How change the axis Waterfall Ultimate Position
Hi guys!!
I need a help with the Waterfall Ultimate Graph.
I need to change the position of one of my cateogries,that inside of my measure. But i dont know if its posible, in this graph.
At image below its a example that i need. I have top 5 of my categories, and the sixth position are my "Others" categories.
But i needed to insert two others measures (Col L and Col U), and i need that Col U will be at the end of the x axis. Its posible to do it?
My measure is:
ANY HELP is appreciated! Congrats!
Resolved!
First, i created a index measure, based on ranking that already works, where i can to set the number of the index that i want to show at waterfall graph.
Index =IF([Ranking_] <= 5,[Ranking_],if(SELECTEDVALUE(Dimension_[Category])="X",0,if(SELECTEDVALUE(Dimension_[Category])="Y",7,if(SELECTEDVALUE(Dimension_[Category])="OTHERS",6))))In the graph, i've added Index measure as a tooltip, and then, order the graph based on my index measure, and it worked perfectly!!!!!!!
4 Replies
- v-lid-msft
Community Support
Hi larcaris ,
It seems that you blank the table visual, if the category is confidential, we suggest you to blank the axis in your waterfall visual also. We can create a axis table and set the sort by column to meet your requirement:
Best regards,- larcarisFrequent Visitor
v-lid-msft its awesome! but my model is so hard, and because of this, i need to resolve all in a fact table.
You get me a idea, i'm thinking to do a column index in dax to resolve, it seems the best way to do it.
My ranking measure is above, but it works only to my top 5, to columns U and L it doesn't works:
Ranking_ = RANKX(ALL(Dim_DePara[GPO Category PBI]), [F_Total], , DESC, Dense)I'm new in powerbi, and i trying to solve this problem for 1 week.Any help about the index column or change the ranking measure?
I don't know if i change the total_others_3 or ranking_ measure.- larcarisFrequent Visitor
Resolved!
First, i created a index measure, based on ranking that already works, where i can to set the number of the index that i want to show at waterfall graph.
Index =IF([Ranking_] <= 5,[Ranking_],if(SELECTEDVALUE(Dimension_[Category])="X",0,if(SELECTEDVALUE(Dimension_[Category])="Y",7,if(SELECTEDVALUE(Dimension_[Category])="OTHERS",6))))In the graph, i've added Index measure as a tooltip, and then, order the graph based on my index measure, and it worked perfectly!!!!!!!