Forum Discussion
Drisgoal
9 months agoFrequent Visitor
Power BI WaterFall Sort Order
I am having difficulty finding a way to have my Quarters showing in Order for this Waterfall Chart. I created two Data Tables for my Category and Breakdown I created a sort ord...
Drisgoal
9 months agoFrequent Visitor
I did this too, it did not work.
KarinSzilagyi
9 months agoSuper User
Drisgoal Does your sort-column for the category look similar to this?
SortKey =
SWITCH(
TRUE(),
'Breakdown'[Time Period] = "Q1", 2,
'Breakdown'[Time Period] = "Q2", 3,
'Breakdown'[Time Period] = "Q3", 4,
'Breakdown'[Time Period] = "Q4", 5,
'Category'[Category] = "End of Last Year", 1,
'Category'[Category] = "Total - Current Year", 6
)