Forum Discussion
flavourabbit
8 years agoFrequent Visitor
Waterfall Chart using multiple measures
Hello, I know this must've been an old topic in Business Intelligence. However, I didn't find any idea to realize what I'd like to achieve. The thing is I'd like to create a Waterfall Chart ...
Anonymous
7 years agoNot applicable
Hi,
Yes, you can do it via a workaround in DAX formula and a control table.
1. Create a table with matching "measure" name:
2. Create an additional measure for your waterfall chart, you may apply + or - for your measure to get the waterfall sentiment:
Waterfall value =
SWITCH (
SELECTEDVALUE ( Table1[Index] );
1; +[Measure 1];
2; +[Measure 2];
3; -[Measure 3];
BLANK()
)3. Apply the new measure in your waterfall chart, with the category based on the table field created (Note that you need to sort it via the category, use hierarchical drill-down if needed):
Cheers!
Anonymous
6 years agoNot applicable
Hi..Thanks for this solution. But how can you remove Total bar?? In my case, total bar is undesirable...moreover, can we change the colour of first and last bars to keep in lookalike?
- Jcarlos96 years agoNew Member
this is my question!!