Forum Discussion
Waterfall Chart using multiple measures
Hi flavourabbit,
Click Editor Queries, click on [Net Sales], [sales Expense], [Production Cost], [Other OH], [EBIT], then click Transform-> Unpivot Columns, table after transforming is like below:
Then drag [Attribute] and [Year] to Category, drag [Value] to Y-axis, the result looks like this:
Regards,
Jimmy Tao
Thanks for the reply.
However, unlike the example, the fact table is quite hugh (1M rows, 200 columns) and also has a lot of measures based on the columns. so I think if I create a table with query editor only dedicated for the waterfall chart, then it would be a loss...
(resulting in slow performance and large file size)
Is there any workaround?
(it would be nice to recognize measure names as categorical field contents and use their value)
- royal206927 years agoFrequent Visitor
Hi there,
Have you found a solution for this since I am having the same issue where I have to create a waterfall chart from created measures?
Thanks
- flavourabbit7 years agoFrequent Visitor
Hi,
The only workaround I know is using R script (or Python)
I followed the following article's instruction. (basically it's using ggplot2's rect function)
https://analyticstraining.com/waterfall-charts-using-ggplot2-in-r/
I hope it helps
- royal206927 years agoFrequent Visitor
Hi,
Thank for your reply :smileylol:
Let me have a look at it