Forum Discussion
Chart for waterfall report
Thanks for the link , it is an interesting solution but not what I am looking for
I have a dataset in powerBI report that I created number of measures ie Total, Spend, Sales, Customer, EndDateSale, Demand
There is also a table that lists below for ordering the measure on the chart
The chart should look something like this ;
| ||||||||||||||||
| ||||||||||||||||
| ||||||||||||||||
| ||||||||||||||||
| ||||||||||||||||
| ||||||||||||||||
| ||||||||||||||||
|
This is a sample scenario I have created
What I have so far is two master measure that one should show the chart value
T Bar =
VAR Total = [Total]
VAR Spend = [Spend]
etc
Return IF ( ListTable[list]),
Switch (
Values ( ListTable[list]),
“Total”,Total,
“Spend”,spend,
Etc
), Blank()
B Bar =
VAR Total = [Total]
VAR Spend = [Spend]
etc
Return IF ( ListTable[list]),
Switch (
Values ( ListTable[list]),
“Total”,Total,
“Spend”,spend,
Etc
), Blank()
But the chart not working as I expect,
Hope this make it more clearer
Thanks
anyone?