Forum Discussion

larcaris's avatar
larcaris
Frequent Visitor
6 years ago
Solved

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 ...
  • larcaris's avatar
    larcaris
    6 years ago

    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!!!!!!!