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 ...
Olivier1
7 years agoRegular Visitor
You can actually create a new table containing the names of your measures (You can write them manually). You can then use this table as your category in your waterfall and create a new measure for your Y axis. My measure looks like ; WF Measures = VAR Meas = SELECTEDVALUE('Waterfall 2'[Column1]) return SWITCH(TRUE(); Meas = "Ending Inventory (LY)" ;1 ;Meas = "Beginning Inventory (Feb)";-1 ; Meas = "Production" ; 1; Meas = "Sales" ; -1;Meas = "Interco & Adjustments *" ;4 ;Meas = "Ending Inventory (Act)" ; 1; -10) **You can replace the numbers with the measure you want it to calculate**